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

30 lines
575 B
Java

package jmri.jmrit.throttle;
import org.junit.jupiter.api.*;
/**
* Test simple functioning of ThrottlesPreferencesAction
*
* @author Paul Bender Copyright (C) 2016
*/
public class ThrottlesPreferencesActionTest {
@Test
public void testCtor() {
ThrottlesPreferencesAction panel = new ThrottlesPreferencesAction();
Assertions.assertNotNull( panel, "exists");
}
@BeforeEach
public void setUp() {
jmri.util.JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
jmri.util.JUnitUtil.tearDown();
}
}