Add junit test info

This commit is contained in:
Flare Microsystems
2024-11-08 17:22:09 -08:00
parent acb9806bcf
commit 9763fd8f08
2 changed files with 14 additions and 0 deletions

14
src/test/TestCase.java Normal file
View File

@@ -0,0 +1,14 @@
package test;
import static org.junit.Assert.*;
import org.junit.Test;
public class TestCase {
@Test
public void test() {
assertTrue(true);
}
}