34 lines
782 B
Java
34 lines
782 B
Java
package jmri.jmrix.ieee802154.swing;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class IEEE802154ComponentFactoryTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo memo = new jmri.jmrix.ieee802154.IEEE802154SystemConnectionMemo();
|
|
IEEE802154ComponentFactory t = new IEEE802154ComponentFactory(memo);
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(IEEE802154ComponentFactoryTest.class);
|
|
|
|
}
|