Archived
1
0
Fork 0
This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
Pathfinder/src/test/java/fr/u_paris/gla/project/AppTest.java
2024-02-10 17:49:38 +01:00

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...");
}
}