21 lines
427 B
Java
21 lines
427 B
Java
package jmri.jmrit.operations.locations.gui;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
* Tests for the YardmasterPanel class
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class YardmasterPanelTest extends jmri.jmrit.operations.CommonConductorYardmasterPanelTest {
|
|
|
|
@BeforeEach
|
|
@Override
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
p = new YardmasterPanel();
|
|
}
|
|
|
|
}
|