summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/test
diff options
context:
space:
mode:
authorJonathan Bauer2014-09-11 15:04:50 +0200
committerJonathan Bauer2014-09-11 15:04:50 +0200
commite90286005f1cbedc77bfff91f867cb6aec25a595 (patch)
tree361faf449e987518ffe33757d64af69539f0ef5c /dozentenmodulserver/src/test
parentlower case names for folder please (diff)
downloadtutor-module-e90286005f1cbedc77bfff91f867cb6aec25a595.tar.gz
tutor-module-e90286005f1cbedc77bfff91f867cb6aec25a595.tar.xz
tutor-module-e90286005f1cbedc77bfff91f867cb6aec25a595.zip
oops
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 );
+ }
+}