33 lines
620 B
Java
33 lines
620 B
Java
package jmri.jmrit.swing.meter.configurexml;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.AfterEach;
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class MeterFrameManagerXmlTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
MeterFrameManagerXml t = new MeterFrameManagerXml();
|
|
Assert.assertNotNull("exists", t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
}
|