Files
JIMRI/java/test/jmri/jmrix/loconet/bluetooth/LocoNetBluetoothAdapterTest.java
2026-06-17 14:00:51 +02:00

33 lines
639 B
Java

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