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

32 lines
624 B
Java

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