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 options = new HashMap(); // options.put("optionA", "valueA"); // options.put("optionB", 42); // assertTrue(dut.updateDeviceData(12, options)); // } }