removed unused tests

This commit is contained in:
Lucas Pleß 2012-03-09 23:47:38 +01:00
parent 9dd28ca80d
commit 23bc67c8ca
1 changed files with 0 additions and 15 deletions

View File

@ -19,21 +19,6 @@ public class BuntiDMXDeviceTest {
dut = new Par56Spot(DEVICEID,STARTADDRESS,"device");
}
@Test
public void testGetLastSendOut() throws Exception {
assertEquals(0, dut.getLastSendOut());
dut.setSendOutNow();
long value = dut.getLastSendOut();
assertTrue(value > 0 && value <= System.currentTimeMillis());
}
@Test
public void testSetSendOutNow() throws Exception {
dut.setSendOutNow();
long value = dut.getLastSendOut();
assertTrue(value > 0 && value <= System.currentTimeMillis());
}
@Test
public void testGetStartAddress() throws Exception {
assertEquals(42, dut.getStartAddress());