10 lines
190 B
Java
10 lines
190 B
Java
package hatelace;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
class AppTest {
|
|
@Test void appHasAGreeting() {
|
|
assertNotNull(1);
|
|
}
|
|
}
|