summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/test/java/bwlehrpool
diff options
context:
space:
mode:
authorSimon Rettberg2014-07-14 20:58:42 +0200
committerSimon Rettberg2014-07-14 20:58:42 +0200
commit67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107 (patch)
tree82b1d287d0b7304d2c5b8bc4d958694fd8fd2b4d /Dozentenmodul/src/test/java/bwlehrpool
parentConverted DMS to Maven project (1/2) (diff)
downloadtutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.tar.gz
tutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.tar.xz
tutor-module-67511b8aad6c1162bbd8ba01e1d4cd9a0bb1e107.zip
mavenization on its way...
Diffstat (limited to 'Dozentenmodul/src/test/java/bwlehrpool')
-rw-r--r--Dozentenmodul/src/test/java/bwlehrpool/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/Dozentenmodul/src/test/java/bwlehrpool/AppTest.java b/Dozentenmodul/src/test/java/bwlehrpool/AppTest.java
new file mode 100644
index 00000000..ffcdcc2e
--- /dev/null
+++ b/Dozentenmodul/src/test/java/bwlehrpool/AppTest.java
@@ -0,0 +1,38 @@
+package bwlehrpool;
+
+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 );
+ }
+}