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); }