Files
JIMRI/java/test/jmri/jmrit/throttle/ThrottlesListPanelTest.java
2026-06-17 14:00:51 +02:00

34 lines
734 B
Java

package jmri.jmrit.throttle;
import org.junit.jupiter.api.*;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import jmri.jmrit.throttle.list.ThrottlesListPanel;
/**
* Test simple functioning of ThrottlesListPanel
*
* @author Paul Bender Copyright (C) 2016
*/
@DisabledIfSystemProperty(named = "java.awt.headless", matches = "true")
public class ThrottlesListPanelTest {
@Test
public void testCtor() {
ThrottlesListPanel panel = new ThrottlesListPanel();
Assertions.assertNotNull( panel, "exists");
}
@BeforeEach
public void setUp() {
jmri.util.JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
jmri.util.JUnitUtil.tearDown();
}
}