use of jmri.jmrix.jmriclient.JMRIClientSystemConnectionMemo in project JMRI by JMRI.
the class JMRIClientComponentFactoryTest method setUp.
@Before
public void setUp() {
Log4JFixture.setUp();
JUnitUtil.resetInstanceManager();
tc = new JMRIClientTrafficController();
m = new JMRIClientSystemConnectionMemo();
m.setSystemPrefix("ABC");
}
use of jmri.jmrix.jmriclient.JMRIClientSystemConnectionMemo in project JMRI by JMRI.
the class JMRIClientMenuTest method setUp.
@Before
public void setUp() {
Log4JFixture.setUp();
JUnitUtil.resetInstanceManager();
tc = new JMRIClientTrafficController();
m = new JMRIClientSystemConnectionMemo();
m.setSystemPrefix("ABC");
}
use of jmri.jmrix.jmriclient.JMRIClientSystemConnectionMemo in project JMRI by JMRI.
the class JMRIClientMonActionTest method testStringCtor.
@Test
public void testStringCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
JMRIClientMonAction action = new JMRIClientMonAction("IEEE 802.15.4 test Action", new JMRIClientSystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.jmriclient.JMRIClientSystemConnectionMemo in project JMRI by JMRI.
the class JMRIClientMonFrameTest method testMemoCtor.
@Test
public void testMemoCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
JMRIClientMonFrame action = new JMRIClientMonFrame(new JMRIClientSystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
use of jmri.jmrix.jmriclient.JMRIClientSystemConnectionMemo in project JMRI by JMRI.
the class PacketGenActionTest method testStringMemoCtor.
@Test
public void testStringMemoCtor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
PacketGenAction action = new PacketGenAction("JMRIClient PacketGen test Action", new JMRIClientSystemConnectionMemo());
Assert.assertNotNull("exists", action);
}
Aggregations