Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
@@ -0,0 +1,29 @@
package jmri.jmrit.z21server;
import jmri.util.JUnitUtil;
import org.junit.jupiter.api.*;
/**
* Test simple functioning of MainServer
*
* @author Eckart Meyer (C) 2025
*/
public class MainServerTest {
@Test
public void testCtor() {
MainServer s = new MainServer();
Assertions.assertNotNull( s, "exists" );
}
@BeforeEach
public void setUp() {
JUnitUtil.setUp();
}
@AfterEach
public void tearDown() {
JUnitUtil.tearDown();
}
}