diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-04 12:11:11 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-04-04 12:11:11 -0700 |
| commit | 28550a86f6f9b4dea05e3c19fb89ab7e4f6996ef (patch) | |
| tree | bf88782db8c047ff26fdf8ab4c82002d4e7e8850 /src/test/java/org | |
Initial Commit
Diffstat (limited to 'src/test/java/org')
| -rw-r--r-- | src/test/java/org/example/AppTest.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/java/org/example/AppTest.java b/src/test/java/org/example/AppTest.java new file mode 100644 index 0000000..d5f435d --- /dev/null +++ b/src/test/java/org/example/AppTest.java @@ -0,0 +1,38 @@ +package org.example; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} |
