Files
JIMRI/java/test/apps/startup/configurexml/StartupActionsPreferencesPanelXmlTest.java
T
2026-06-17 14:00:51 +02:00

33 lines
640 B
Java

package apps.startup.configurexml;
import jmri.util.JUnitUtil;
import org.junit.jupiter.api.*;
/**
* StartupActionsPreferencesPanelXmlTest.java
*
* Test for the StartupActionsPreferencesPanelXml class
*
* @author Paul Bender Copyright (C) 2016
*/
public class StartupActionsPreferencesPanelXmlTest {
@Test
public void testCtor(){
Assertions.assertNotNull(new StartupActionsPreferencesPanelXml(), "StartupActionsPreferencesPanelXml constructor");
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
}