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,29 @@
package jmri.jmrit.logix;
import org.junit.jupiter.api.*;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class WarrantShutdownTaskTest {
@Test
public void testCTor() {
WarrantShutdownTask t = new WarrantShutdownTask("test warrant shutdown task");
Assertions.assertNotNull( t, "exists");
}
@BeforeEach
public void setUp() {
jmri.util.JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
jmri.util.JUnitUtil.tearDown();
}
// private static final Logger log = LoggerFactory.getLogger(WarrantShutdownTaskTest.class);
}