summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/test
diff options
context:
space:
mode:
authorSimon Rettberg2014-07-14 18:54:00 +0200
committerSimon Rettberg2014-07-14 18:54:00 +0200
commitccf5fac0905fc2535c9a5a2e5f01a35b31c606d4 (patch)
treed6a6466453065df714207df64335188c88fcba9c /Dozentenmodulserver/src/test
parentErsten zwei Funktionen (diff)
downloadtutor-module-ccf5fac0905fc2535c9a5a2e5f01a35b31c606d4.tar.gz
tutor-module-ccf5fac0905fc2535c9a5a2e5f01a35b31c606d4.tar.xz
tutor-module-ccf5fac0905fc2535c9a5a2e5f01a35b31c606d4.zip
Converted DMS to Maven project (1/2)
Diffstat (limited to 'Dozentenmodulserver/src/test')
-rw-r--r--Dozentenmodulserver/src/test/java/bwlehrpool/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/Dozentenmodulserver/src/test/java/bwlehrpool/AppTest.java b/Dozentenmodulserver/src/test/java/bwlehrpool/AppTest.java
new file mode 100644
index 00000000..ffcdcc2e
--- /dev/null
+++ b/Dozentenmodulserver/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 );
+ }
+}