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