Skip to content

Commit

Permalink
test skelton file
Browse files Browse the repository at this point in the history
  • Loading branch information
bobjacobsen committed Apr 30, 2020
1 parent 67cc98e commit f58d3a7
Showing 1 changed file with 31 additions and 0 deletions.
@@ -0,0 +1,31 @@
package jmri.jmrit.display.layoutEditor.LayoutEditorDialogs;

import jmri.jmrit.display.layoutEditor.*;
import jmri.util.*;

import org.junit.*;

/**
* Test simple functioning of LayoutTrackEditor.
*
* @author Bob Jacobsen Copyright (C) 2020
*/
public class LayoutTrackEditorTest {

@Test
public void testCtor() {
new LayoutTrackEditor(null);
}

@Before
public void setUp() {
JUnitUtil.setUp();
}

@After
public void tearDown() {
JUnitUtil.tearDown();
}

// private final static Logger log = LoggerFactory.getLogger(LayoutTrackEditorTest.class);
}

0 comments on commit f58d3a7

Please sign in to comment.