32 lines
571 B
Java
32 lines
571 B
Java
package apps;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class SystemConsoleTest {
|
|
|
|
@Test
|
|
public void testGetInstance() {
|
|
SystemConsole t = SystemConsole.getInstance();
|
|
Assertions.assertNotNull( t, "exists");
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(SystemConsoleTest.class);
|
|
|
|
}
|