package jmri.util; import org.junit.jupiter.api.*; /** * * @author Paul Bender Copyright (C) 2017 */ public class PhysicalLocationPanelTest { @Test public void testCTor() { PhysicalLocationPanel t = new PhysicalLocationPanel(); Assertions.assertNotNull( t, "exists"); } @BeforeEach public void setUp() { JUnitUtil.setUp(); } @AfterEach public void tearDown() { JUnitUtil.tearDown(); } // private static final Logger log = LoggerFactory.getLogger(PhysicalLocationPanelTest.class); }