diff options
Diffstat (limited to 'src/test/java/ca/mokhan/assignment1/AppTest.java')
| -rw-r--r-- | src/test/java/ca/mokhan/assignment1/AppTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/java/ca/mokhan/assignment1/AppTest.java b/src/test/java/ca/mokhan/assignment1/AppTest.java new file mode 100644 index 0000000..f4c16b8 --- /dev/null +++ b/src/test/java/ca/mokhan/assignment1/AppTest.java @@ -0,0 +1,19 @@ +package ca.mokhan.assignment1; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +public class AppTest extends TestCase { + public AppTest(String testName) { + super(testName); + } + + public static Test suite() { + return new TestSuite(AppTest.class); + } + + public void testApp() { + assertTrue(true); + } +} |
