Files
JIMRI/java/test/jmri/jmrix/loconet/UhlenbrockSlotManagerTest.java
2026-06-17 14:00:51 +02:00

35 lines
717 B
Java

package jmri.jmrix.loconet;
import jmri.util.JUnitUtil;
import org.junit.Assert;
import org.junit.jupiter.api.*;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class UhlenbrockSlotManagerTest {
@Test
public void testCTor() {
LnTrafficController lnis = new LocoNetInterfaceScaffold();
UhlenbrockSlotManager t = new UhlenbrockSlotManager(lnis);
Assert.assertNotNull("exists",t);
t.dispose();
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
// private static final Logger log = LoggerFactory.getLogger(UhlenbrockSlotManagerTest.class);
}