Examples of DmxService


Examples of org.openhab.binding.dmx.DmxService

 
  @Test
  public void switchesOnToMaxValueWhenOnCommandReceivedAndNoChannelValues() throws BindingConfigParseException {
   
    DmxItem item = getValidInstance();
    DmxService service = Mockito.mock(DmxService.class);
   
    Mockito.when(service.getChannelValue(3)).thenReturn(0);
    Mockito.when(service.getChannelValue(4)).thenReturn(0);
   
    item.processCommand(service, OnOffType.ON);
   
    Mockito.verify(service).enableChannel(3);   
    Mockito.verify(service).enableChannel(4);
View Full Code Here

Examples of org.openhab.binding.dmx.DmxService

  @Test
  @SuppressWarnings("unchecked")
  public void canCallCustomCommand() throws BindingConfigParseException {

    DmxItem item = getValidInstance();
    DmxService service = Mockito.mock(DmxService.class);
    DmxCommand cmd = Mockito.mock(DmxCommand.class);
    Map<String, DmxCommand> commands = (Map<String, DmxCommand>) Whitebox.getInternalState(item, "customCommands");
    commands.put("ON", cmd);
   
    item.processCommand(service, OnOffType.ON);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.