9596979899100101102103104105
@Test public void startStopDestroy() { SoapServer server = getServer(); server.start(); server.stop(); server.destroy(); } @Test public void startStopDestroyCannotResurrect() { SoapServer server = getServer();
103104105106107108109110111112113
@Test public void startStopDestroyCannotResurrect() { SoapServer server = getServer(); server.start(); server.stop(); server.destroy(); RuntimeException caught = null; try { server.start(); } catch (RuntimeException ex) { caught = ex;