14 lines
322 B
Java
14 lines
322 B
Java
package fr.u_paris.gla.project;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
/** Unit test for simple App. */
|
|
class AppTest {
|
|
/** Rigorous Test :-) */
|
|
@Test
|
|
void testPlaceholder() {
|
|
assertTrue(true, "It should be true that true is true...");
|
|
}
|
|
}
|