diff --git a/ch.psi.fda.cdump/src/test/home/config/cdump.properties b/ch.psi.fda.cdump/src/test/home/config/cdump.properties deleted file mode 100644 index 7b29374..0000000 --- a/ch.psi.fda.cdump/src/test/home/config/cdump.properties +++ /dev/null @@ -1,3 +0,0 @@ -ch.psi.cdump.dataChannel= -ch.psi.cdump.controlChannel= -ch.psi.cdump.samplingRateChannel= \ No newline at end of file diff --git a/ch.psi.fda.cdump/src/test/home/data/.gitignore b/ch.psi.fda.cdump/src/test/home/data/.gitignore deleted file mode 100644 index e69de29..0000000 diff --git a/ch.psi.fda.cdump/src/test/java/ch/psi/fda/cdump/CdumpListenerTest.java b/ch.psi.fda.cdump/src/test/java/ch/psi/fda/cdump/CdumpListenerTest.java index 4dacd5b..b76f798 100644 --- a/ch.psi.fda.cdump/src/test/java/ch/psi/fda/cdump/CdumpListenerTest.java +++ b/ch.psi.fda.cdump/src/test/java/ch/psi/fda/cdump/CdumpListenerTest.java @@ -18,34 +18,14 @@ */ package ch.psi.fda.cdump; -import org.junit.After; -import org.junit.Before; import org.junit.Test; import ch.psi.fda.messages.Message; import com.google.common.eventbus.EventBus; import com.google.common.eventbus.Subscribe; - -/** - * - */ public class CdumpListenerTest { - /** - * @throws java.lang.Exception - */ - @Before - public void setUp() throws Exception { - } - - /** - * @throws java.lang.Exception - */ - @After - public void tearDown() throws Exception { - } - @Test public void test() { EventBus bus = new EventBus(); @@ -61,8 +41,6 @@ public class CdumpListenerTest { l.transform(new int[] {1,2,3,4,11,12,13,14}); l.transform(new int[] {5,6,7,8,15,16,17,18}); - - } }