33 lines
631 B
Java
33 lines
631 B
Java
package jmri.jmrit.automat;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.jupiter.api.*;
|
|
import org.junit.Assert;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class SampleAutomaton2ActionTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
SampleAutomaton2Action t = new SampleAutomaton2Action("Test");
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(SampleAutomaton2ActionTest.class);
|
|
|
|
}
|