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