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

32 lines
641 B
Java

package jmri.jmrit.operations;
import org.junit.Assert;
import org.junit.jupiter.api.*;
/**
* Tests for the CommonConductorYardmasterPanel class
*
* @author Paul Bender Copyright (C) 2017
*/
public class CommonConductorYardmasterPanelTest extends OperationsTestCase {
protected CommonConductorYardmasterPanel p = null;
@Test
public void testCtor() {
Assert.assertNotNull("exists", p);
}
@Override
@BeforeEach
public void setUp() {
super.setUp();
p = new CommonConductorYardmasterPanel() {
@Override
public void update() {
}
};
}
}