diff options
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/pom.xml | 6 | ||||
-rw-r--r-- | daemon/src/test/java/org/openslx/taskmanager/AppTest.java | 38 |
2 files changed, 0 insertions, 44 deletions
diff --git a/daemon/pom.xml b/daemon/pom.xml index 5733063..0412f3e 100644 --- a/daemon/pom.xml +++ b/daemon/pom.xml @@ -53,12 +53,6 @@ <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.openslx.taskmanager</groupId> <artifactId>taskmanager-api</artifactId> <version>${project.version}</version> diff --git a/daemon/src/test/java/org/openslx/taskmanager/AppTest.java b/daemon/src/test/java/org/openslx/taskmanager/AppTest.java deleted file mode 100644 index feac8e7..0000000 --- a/daemon/src/test/java/org/openslx/taskmanager/AppTest.java +++ /dev/null @@ -1,38 +0,0 @@ -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 ); - } -} |