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

30 lines
578 B
Java

package jmri;
import org.junit.jupiter.api.*;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class CatalogTreeLeafTest {
@Test
public void testCTor() {
CatalogTreeLeaf t = new CatalogTreeLeaf("testleaf","testpath",1);
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(CatalogTreeLeafTest.class);
}