Files
JIMRI/java/test/jmri/jmrit/operations/trains/configurexml/TrainIconXmlTest.java
T
2026-06-17 14:00:51 +02:00

22 lines
475 B
Java

package jmri.jmrit.operations.trains.configurexml;
import org.junit.Assert;
import org.junit.jupiter.api.*;
import jmri.jmrit.operations.OperationsTestCase;
/**
* TrainIconXmlTest.java
*
* Description: tests for the TrainIconXml class
*
* @author Paul Bender Copyright (C) 2016
*/
public class TrainIconXmlTest extends OperationsTestCase {
@Test
public void testCtor() {
Assert.assertNotNull("TrainIconXml constructor", new TrainIconXml());
}
}