28 lines
533 B
Java
28 lines
533 B
Java
package jmri.jmrit.sample.swing;
|
|
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
* Tests for the ampleConfigStartUpActionFactory class
|
|
*
|
|
* @author Bob Jacobsen
|
|
*/
|
|
public class SampleConfigStartUpActionFactoryTest {
|
|
|
|
@Test
|
|
// test creation
|
|
public void testCreate() {
|
|
Assertions.assertNotNull( new SampleConfigStartUpActionFactory() );
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
jmri.util.JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
jmri.util.JUnitUtil.tearDown();
|
|
}
|
|
}
|