46 lines
1.0 KiB
Java
46 lines
1.0 KiB
Java
package jmri.jmrix.easydcc;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class EasyDccThrottleManagerTest extends jmri.managers.AbstractThrottleManagerTestBase {
|
|
|
|
private EasyDccTrafficControlScaffold tc = null;
|
|
private EasyDccSystemConnectionMemo memo = null;
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
// infrastructure objects
|
|
Assert.assertNotNull("exists",tm);
|
|
}
|
|
|
|
@BeforeEach
|
|
@Override
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
tc = new EasyDccTrafficControlScaffold(null);
|
|
memo = new EasyDccSystemConnectionMemo(tc);
|
|
tm = new EasyDccThrottleManager(memo);
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
tm.dispose();
|
|
tm = null;
|
|
memo.dispose();
|
|
memo = null;
|
|
tc.terminateThreads();
|
|
tc = null;
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(EasyDccThrottleManagerTest.class);
|
|
|
|
}
|