use of jmri.jmrix.loconet.LocoNetSystemConnectionMemo in project JMRI by JMRI.
the class SlotMonDataModelTest method testCTor.
@Test
public void testCTor() {
LnTrafficController lnis = new LocoNetInterfaceScaffold();
SlotManager slotmanager = new SlotManager(lnis);
LocoNetSystemConnectionMemo memo = new LocoNetSystemConnectionMemo(lnis, slotmanager);
SlotMonDataModel t = new SlotMonDataModel(1, 19, memo);
Assert.assertNotNull("exists", t);
}
use of jmri.jmrix.loconet.LocoNetSystemConnectionMemo in project JMRI by JMRI.
the class LnComponentFactoryTest method testCTor.
@Test
public void testCTor() {
LnTrafficController lnis = new LocoNetInterfaceScaffold();
SlotManager slotmanager = new SlotManager(lnis);
LocoNetSystemConnectionMemo memo = new LocoNetSystemConnectionMemo(lnis, slotmanager);
LnComponentFactory t = new LnComponentFactory(memo);
Assert.assertNotNull("exists", t);
}
Aggregations