From 3c2be35d16d7482442911f5b06b68512f86e15b5 Mon Sep 17 00:00:00 2001 From: mokha Date: Sun, 5 May 2019 19:36:09 -0600 Subject: butcher default directory structure to make instructor happy --- src/AppTest.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/AppTest.java (limited to 'src/AppTest.java') diff --git a/src/AppTest.java b/src/AppTest.java new file mode 100644 index 0000000..f4c16b8 --- /dev/null +++ b/src/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); + } +} -- cgit v1.2.3