summaryrefslogtreecommitdiffstats
path: root/daemon/src/test/java/org/openslx/taskmanager/AppTest.java
diff options
context:
space:
mode:
authorSimon Rettberg2014-06-03 16:44:56 +0200
committerSimon Rettberg2014-06-03 16:44:56 +0200
commitefb5ad9f5fe48a77b6cd14e7bd2b25e3b13ecb1f (patch)
treeab7310095194cea2a74acd8aac782b1ec95e508d /daemon/src/test/java/org/openslx/taskmanager/AppTest.java
downloadtaskman-lite-efb5ad9f5fe48a77b6cd14e7bd2b25e3b13ecb1f.tar.gz
taskman-lite-efb5ad9f5fe48a77b6cd14e7bd2b25e3b13ecb1f.tar.xz
taskman-lite-efb5ad9f5fe48a77b6cd14e7bd2b25e3b13ecb1f.zip
Initial commit
Diffstat (limited to 'daemon/src/test/java/org/openslx/taskmanager/AppTest.java')
-rw-r--r--daemon/src/test/java/org/openslx/taskmanager/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/daemon/src/test/java/org/openslx/taskmanager/AppTest.java b/daemon/src/test/java/org/openslx/taskmanager/AppTest.java
new file mode 100644
index 0000000..feac8e7
--- /dev/null
+++ b/daemon/src/test/java/org/openslx/taskmanager/AppTest.java
@@ -0,0 +1,38 @@
+package org.openslx.taskmanager;
+
+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 );
+ }
+}