package app.noanno.com.aol.micro.server.copy; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import java.util.concurrent.ExecutionException; import org.junit.After; import org.junit.Before; import org.junit.Test; import com.aol.micro.server.MicroserverApp; import com.aol.micro.server.config.Microserver; import com.aol.micro.server.testing.RestAgent; public class NoAnnoRunnerTest { RestAgent rest = new RestAgent(); MicroserverApp server; @Before public void startServer() throws InterruptedException{ server = new MicroserverApp(()-> "simple-app"); Thread.sleep(1000); server.start(); } @After public void stopServer(){ server.stop(); } @Test public void runAppAndBasicTest() throws InterruptedException, ExecutionException{ assertThat(rest.get("http://localhost:8080/simple-app/status/ping"),is("ok")); } }