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(); } }