bunti/src/test/java/de/ctdo/bunti/control/BuntiControllerTest.java

24 lines
550 B
Java
Raw Normal View History

2012-03-07 21:10:22 +00:00
package de.ctdo.bunti.control;
import org.junit.Before;
public class BuntiControllerTest {
BuntiControllerImpl dut;
@Before
public void setUp() throws Exception {
dut = new BuntiControllerImpl();
// dut.setDevicesDAO(daoMock);
}
// @Test
// public void testSetDevice() throws Exception {
// Map<String,Object> options = new HashMap<String, Object>();
// options.put("optionA", "valueA");
// options.put("optionB", 42);
// assertTrue(dut.updateDeviceData(12, options));
2012-03-07 21:10:22 +00:00
// }
}