removed unnecessary config

This commit is contained in:
2014-04-30 07:53:39 +02:00
parent 20d5842510
commit 1b98a5492d
3 changed files with 0 additions and 25 deletions
@@ -1,3 +0,0 @@
ch.psi.cdump.dataChannel=
ch.psi.cdump.controlChannel=
ch.psi.cdump.samplingRateChannel=
@@ -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});
}
}