22 lines
528 B
Java
22 lines
528 B
Java
package jmri.jmrit.operations.locations.gui;
|
|
|
|
import jmri.jmrit.operations.OperationsTestCase;
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class InterchangeTableModelTest extends OperationsTestCase {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
InterchangeTableModel t = new InterchangeTableModel();
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(InterchangeTableModelTest.class);
|
|
|
|
}
|