35 lines
793 B
Java
35 lines
793 B
Java
package jmri.jmrix.secsi;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class SecsiMenuTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
SecsiSystemConnectionMemo memo = new SecsiSystemConnectionMemo();
|
|
SecsiMenu t = new SecsiMenu(memo);
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.clearShutDownManager(); // put in place because AbstractMRTrafficController implementing subclass was not terminated properly
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(SecsiMenuTest.class);
|
|
|
|
}
|