use of jmri.jmrix.loconet.UhlenbrockSlotManager in project JMRI by JMRI.
the class UhlenbrockProgrammerManagerTest method testCTor.
@Test
public void testCTor() {
LnTrafficController lnis = new LocoNetInterfaceScaffold();
UhlenbrockSlotManager slotmanager = new UhlenbrockSlotManager(lnis);
UhlenbrockSystemConnectionMemo memo = new UhlenbrockSystemConnectionMemo(lnis, slotmanager);
UhlenbrockProgrammerManager t = new UhlenbrockProgrammerManager(slotmanager, memo);
Assert.assertNotNull("exists", t);
}
use of jmri.jmrix.loconet.UhlenbrockSlotManager in project JMRI by JMRI.
the class UhlenbrockLnThrottleManagerTest method testCTor.
@Test
public void testCTor() {
LnTrafficController lnis = new LocoNetInterfaceScaffold();
UhlenbrockSlotManager slotmanager = new UhlenbrockSlotManager(lnis);
UhlenbrockSystemConnectionMemo memo = new UhlenbrockSystemConnectionMemo(lnis, slotmanager);
UhlenbrockLnThrottleManager t = new UhlenbrockLnThrottleManager(memo);
Assert.assertNotNull("exists", t);
}
Aggregations