32 lines
576 B
Java
32 lines
576 B
Java
package jmri.configurexml;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Dave Sand Copyright (C) 2022
|
|
*/
|
|
public class StoreAndCompareTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
StoreAndCompare sc = new StoreAndCompare();
|
|
Assertions.assertNotNull(sc, "exists");
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(StoreAndCompareTest.class);
|
|
|
|
}
|