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