38 lines
783 B
Java
38 lines
783 B
Java
package jmri.jmrix.rps.trackingpanel;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
import jmri.jmrix.rps.RpsSystemConnectionMemo;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class RpsTrackingFrameActionTest {
|
|
|
|
private RpsSystemConnectionMemo memo = null;
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
RpsTrackingFrameAction t = new RpsTrackingFrameAction(memo);
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
memo = new RpsSystemConnectionMemo();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(RpsTrackingFrameActionTest.class);
|
|
|
|
}
|