summaryrefslogtreecommitdiff
path: root/my-app/src/test/java/ca/mokhan/app/AppTest.java
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2019-04-24 22:06:14 -0600
committermo <mo.khan@gmail.com>2019-04-24 22:06:14 -0600
commit2b2c1af61bc96d704561b97e1abfa2acb778b682 (patch)
tree5b247b0d01ca8a8b41d17394fad76bca088aa491 /my-app/src/test/java/ca/mokhan/app/AppTest.java
initial commit
```bash mvn -B archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DgroupId=ca.mokhan.app -DartifactId=my-app ```
Diffstat (limited to 'my-app/src/test/java/ca/mokhan/app/AppTest.java')
-rw-r--r--my-app/src/test/java/ca/mokhan/app/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/my-app/src/test/java/ca/mokhan/app/AppTest.java b/my-app/src/test/java/ca/mokhan/app/AppTest.java
new file mode 100644
index 0000000..e113857
--- /dev/null
+++ b/my-app/src/test/java/ca/mokhan/app/AppTest.java
@@ -0,0 +1,38 @@
+package ca.mokhan.app;
+
+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 );
+ }
+}