diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2015-09-15 19:58:57 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2015-09-15 19:58:57 -0400 |
| commit | 1af5bdd1f439f482adedbdd35c1db7f4064709ee (patch) | |
| tree | 7637a0df44a69ab09aa0ee8c4500c99d137c1038 /RGens/src | |
Initial project commit
Diffstat (limited to 'RGens/src')
| -rw-r--r-- | RGens/src/test/java/bjc/RGens/AppTest.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/RGens/src/test/java/bjc/RGens/AppTest.java b/RGens/src/test/java/bjc/RGens/AppTest.java new file mode 100644 index 0000000..25fb563 --- /dev/null +++ b/RGens/src/test/java/bjc/RGens/AppTest.java @@ -0,0 +1,38 @@ +package bjc.RGens; + +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 ); + } +} |
