summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/openslx/satellitedaemon/AppTest.java
diff options
context:
space:
mode:
authorMichael Petretti2014-05-06 17:18:56 +0200
committerMichael Petretti2014-05-06 17:18:56 +0200
commit257bad2360dc8ba68ef6f93219a90917a7ffe447 (patch)
treef48fb37a0c30fe9755789557f3e4bf9d700654eb /src/test/java/org/openslx/satellitedaemon/AppTest.java
downloadsatellite-daemon-257bad2360dc8ba68ef6f93219a90917a7ffe447.tar.gz
satellite-daemon-257bad2360dc8ba68ef6f93219a90917a7ffe447.tar.xz
satellite-daemon-257bad2360dc8ba68ef6f93219a90917a7ffe447.zip
initial commit
Diffstat (limited to 'src/test/java/org/openslx/satellitedaemon/AppTest.java')
-rw-r--r--src/test/java/org/openslx/satellitedaemon/AppTest.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/java/org/openslx/satellitedaemon/AppTest.java b/src/test/java/org/openslx/satellitedaemon/AppTest.java
new file mode 100644
index 0000000..ff5320c
--- /dev/null
+++ b/src/test/java/org/openslx/satellitedaemon/AppTest.java
@@ -0,0 +1,38 @@
+package org.openslx.satellitedaemon;
+
+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 );
+ }
+}