From 2b2c1af61bc96d704561b97e1abfa2acb778b682 Mon Sep 17 00:00:00 2001 From: mo Date: Wed, 24 Apr 2019 22:06:14 -0600 Subject: initial commit ```bash mvn -B archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DgroupId=ca.mokhan.app -DartifactId=my-app ``` --- my-app/src/test/java/ca/mokhan/app/AppTest.java | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 my-app/src/test/java/ca/mokhan/app/AppTest.java (limited to 'my-app/src/test/java/ca') 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 ); + } +} -- cgit v1.2.3