Files
JIMRI/java/test/jmri/managers/configurexml/AbstractMeterManagerXmlTest.java
2026-06-17 14:00:51 +02:00

32 lines
619 B
Java

package jmri.managers.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 AbstractMeterManagerXmlTest {
@Test
public void testCTor() {
AbstractMeterManagerXml t = new AbstractMeterManagerXml();
Assert.assertNotNull("exists", t);
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
}