33 lines
834 B
Java
33 lines
834 B
Java
package jmri.jmrit.display.layoutEditor.blockRoutingTable;
|
|
|
|
import jmri.jmrit.display.layoutEditor.LayoutBlock;
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class LayoutBlockThroughPathsTableModelTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
LayoutBlock b = new LayoutBlock("test","test");
|
|
LayoutBlockThroughPathsTableModel t = new LayoutBlockThroughPathsTableModel(false,b);
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
// private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LayoutBlockThroughPathsTableModelTest.class);
|
|
}
|