Files
JIMRI/java/test/jmri/jmrix/can/cbus/swing/nodeconfig/CbusNodeUserCommentsPaneTest.java
T
2026-06-17 14:00:51 +02:00

37 lines
851 B
Java

package jmri.jmrix.can.cbus.swing.nodeconfig;
import jmri.util.JUnitUtil;
import org.junit.Assert;
import org.junit.jupiter.api.*;
import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
/**
* Test simple functioning of CbusNodeUserCommentsPane
*
* @author Steve Young Copyright (C) 2021
*/
public class CbusNodeUserCommentsPaneTest {
@Test
@DisabledIfSystemProperty(named ="java.awt.headless", matches ="true")
public void testCtor() {
CbusNodeUserCommentsPane t = new CbusNodeUserCommentsPane(null);
Assert.assertNotNull("exists",t);
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
// private static final Logger log = LoggerFactory.getLogger(CbusNodeUserCommentsPaneTest.class);
}