Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
@@ -0,0 +1,33 @@
package jmri.jmrit.withrottle;
import jmri.InstanceManager;
import jmri.NamedBeanHandleManager;
import jmri.util.JUnitUtil;
import org.junit.Assert;
import org.junit.jupiter.api.*;
/**
* Test simple functioning of WiThrottleManager
*
* @author Paul Bender Copyright (C) 2016
*/
public class WiThrottleManagerTest {
@Test
public void testCtor() {
WiThrottleManager panel = new WiThrottleManager();
Assert.assertNotNull("exists", panel );
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
InstanceManager.setDefault(NamedBeanHandleManager.class, new NamedBeanHandleManager());
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
}