32 lines
601 B
Java
32 lines
601 B
Java
package jmri.jmrit.automat;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.jupiter.api.*;
|
|
import org.junit.Assert;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class AutomatSummaryTest {
|
|
|
|
@Test
|
|
public void testInstance() {
|
|
AutomatSummary t = AutomatSummary.instance();
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
// private static final Logger log = LoggerFactory.getLogger(AutomatSummaryTest.class);
|
|
|
|
}
|