Files
2026-06-17 14:00:51 +02:00

21 lines
442 B
Java

package jmri.jmrit.operations;
import org.junit.Assert;
import org.junit.jupiter.api.*;
/**
*
* @author Paul Bender Copyright (C) 2017
*/
public class OperationsPanelTest extends OperationsTestCase {
@Test
public void testCTor() {
OperationsPanel t = new OperationsPanel();
Assert.assertNotNull("exists", t);
}
// private static final Logger log = LoggerFactory.getLogger(OperationsPanelTest.class);
}