Files
2026-06-17 14:00:51 +02:00

34 lines
684 B
Java

package jmri.jmrit.symbolicprog;
import jmri.util.JUnitUtil;
import org.junit.Assert;
import org.junit.jupiter.api.*;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class NewLocoSelPaneTest {
@Test
public void testCTor() {
NewLocoSelPane t = new NewLocoSelPane();
Assert.assertNotNull("exists", t);
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
JUnitUtil.resetProfileManager();
JUnitUtil.initRosterConfigManager();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
// private static final Logger log = LoggerFactory.getLogger(NewLocoSelPaneTest.class);
}