33 lines
626 B
Java
33 lines
626 B
Java
package jmri.jmrix.loconet.locobufferii;
|
|
|
|
import jmri.util.JUnitUtil;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.jupiter.api.*;
|
|
|
|
/**
|
|
*
|
|
* @author Paul Bender Copyright (C) 2017
|
|
*/
|
|
public class LocoBufferIIAdapterTest {
|
|
|
|
@Test
|
|
public void testCTor() {
|
|
LocoBufferIIAdapter t = new LocoBufferIIAdapter();
|
|
Assert.assertNotNull("exists",t);
|
|
}
|
|
|
|
@BeforeEach
|
|
public void setUp() {
|
|
JUnitUtil.setUp();
|
|
}
|
|
|
|
@AfterEach
|
|
public void tearDown() {
|
|
JUnitUtil.tearDown();
|
|
}
|
|
|
|
// private static final Logger log = LoggerFactory.getLogger(LocoBufferIIAdapterTest.class);
|
|
|
|
}
|