use of jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo in project JMRI by JMRI.
the class PacketGenActionTest method testMemoCtor.
@Test
public void testMemoCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
PacketGenAction action = new PacketGenAction(new IEEE802154SystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo in project JMRI by JMRI.
the class IEEE802154MonActionTest method testStringCtor.
@Test
public void testStringCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
IEEE802154MonAction action = new IEEE802154MonAction("IEEE 802.15.4 test Action", new IEEE802154SystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo in project JMRI by JMRI.
the class IEEE802154MonActionTest method testCtor.
@Test
public void testCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
IEEE802154MonAction action = new IEEE802154MonAction(new IEEE802154SystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo in project JMRI by JMRI.
the class IEEE802154MonFrameTest method testCtor.
@Test
public void testCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
InstanceManager.setDefault(IEEE802154SystemConnectionMemo.class, new IEEE802154SystemConnectionMemo());
IEEE802154MonFrame action = new IEEE802154MonFrame();
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo in project JMRI by JMRI.
the class IEEE802154MonFrameTest method testMemoCtor.
@Test
public void testMemoCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
IEEE802154MonFrame action = new IEEE802154MonFrame(new IEEE802154SystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
Aggregations