@Test
public void testAddingControllers() throws SimulationContextException {
Room room = new Room();
room.setContext(new SimulationContext(new SystemTimeTimeSource()));
HeatingController controller = new HeatingController();
room.addController(controller);
List<IController> controllers = room.getControllers();
Assert.assertSame(controller, controllers.get(0));
}
}