private static final int SLEEP_DEFAULT = 2000;
private final ServerConfiguration serverConfiguration = new ServerConfiguration();
private final TelnetTaskProcessorFactory processorTaskFactory = new TelnetTaskProcessorFactory();
@Test
public void testStartcancel() throws InterruptedException {
final ServerStarter server = new ServerStarter(processorTaskFactory);
server.start();
sleep();
server.stop();
assertTrue(true); // Asserts that the server shutdown exists
}