Files
JIMRI/java/test/jmri/jmrit/operations/routes/tools/ShowRoutesServingLocationFrameTest.java
2026-06-17 14:00:51 +02:00

24 lines
613 B
Java

package jmri.jmrit.operations.routes.tools;
import java.awt.GraphicsEnvironment;
import org.junit.Assert;
import org.junit.Assume;
import org.junit.jupiter.api.Test;
import jmri.jmrit.operations.OperationsTestCase;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class ShowRoutesServingLocationFrameTest extends OperationsTestCase {
@Test
public void testCTor() {
Assume.assumeFalse(GraphicsEnvironment.isHeadless());
ShowRoutesServingLocationFrame f = new ShowRoutesServingLocationFrame();
f.initComponents(null);
Assert.assertNotNull("exists",f);
}
}