22 lines
475 B
Java
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());
|
|
}
|
|
}
|