parent
757aa647cf
commit
7fda9c162e
|
@ -170,6 +170,16 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
|
||||||
assertThat(this.output.toString()).containsOnlyOnce("started on port");
|
assertThat(this.output.toString()).containsOnlyOnce("started on port");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void stopCalledTwice() throws Exception {
|
||||||
|
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
||||||
|
this.container = factory
|
||||||
|
.getEmbeddedServletContainer(exampleServletRegistration());
|
||||||
|
this.container.start();
|
||||||
|
this.container.stop();
|
||||||
|
this.container.stop();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void emptyServerWhenPortIsMinusOne() throws Exception {
|
public void emptyServerWhenPortIsMinusOne() throws Exception {
|
||||||
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
||||||
|
@ -311,16 +321,6 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
|
||||||
getFactory().setContextPath("/");
|
getFactory().setContextPath("/");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void doubleStop() throws Exception {
|
|
||||||
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
|
||||||
this.container = factory
|
|
||||||
.getEmbeddedServletContainer(exampleServletRegistration());
|
|
||||||
this.container.start();
|
|
||||||
this.container.stop();
|
|
||||||
this.container.stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void multipleConfigurations() throws Exception {
|
public void multipleConfigurations() throws Exception {
|
||||||
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
AbstractEmbeddedServletContainerFactory factory = getFactory();
|
||||||
|
|
|
@ -144,7 +144,7 @@ public class JettyEmbeddedServletContainerFactoryTests
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void stopNoStart() throws Exception {
|
public void stopCalledWithoutStart() throws Exception {
|
||||||
JettyEmbeddedServletContainerFactory factory = getFactory();
|
JettyEmbeddedServletContainerFactory factory = getFactory();
|
||||||
this.container = factory
|
this.container = factory
|
||||||
.getEmbeddedServletContainer(exampleServletRegistration());
|
.getEmbeddedServletContainer(exampleServletRegistration());
|
||||||
|
|
|
@ -353,7 +353,7 @@ public class TomcatEmbeddedServletContainerFactoryTests
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void stopNoStart() throws Exception {
|
public void stopCalledWithoutStart() throws Exception {
|
||||||
TomcatEmbeddedServletContainerFactory factory = getFactory();
|
TomcatEmbeddedServletContainerFactory factory = getFactory();
|
||||||
this.container = factory
|
this.container = factory
|
||||||
.getEmbeddedServletContainer(exampleServletRegistration());
|
.getEmbeddedServletContainer(exampleServletRegistration());
|
||||||
|
|
Loading…
Reference in New Issue