Browse Source

Ignore tests that are broken by UNDERTOW-639

pull/5204/merge
Andy Wilkinson 10 years ago
parent
commit
fa7dfb5109
  1. 2
      spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java
  2. 2
      spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java

2
spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java

@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference; @@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import samples.websocket.undertow.client.GreetingService;
@ -56,6 +57,7 @@ public class SampleWebSocketsApplicationTests { @@ -56,6 +57,7 @@ public class SampleWebSocketsApplicationTests {
private int port = 1234;
@Test
@Ignore("UNDERTOW-639")
public void echoEndpoint() throws Exception {
ConfigurableApplicationContext context = new SpringApplicationBuilder(
ClientConfiguration.class, PropertyPlaceholderAutoConfiguration.class)

2
spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java

@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference; @@ -22,6 +22,7 @@ import java.util.concurrent.atomic.AtomicReference;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import samples.websocket.undertow.SampleUndertowWebSocketsApplication;
@ -62,6 +63,7 @@ public class CustomContainerWebSocketsApplicationTests { @@ -62,6 +63,7 @@ public class CustomContainerWebSocketsApplicationTests {
private static int PORT = SocketUtils.findAvailableTcpPort();
@Test
@Ignore("UNDERTOW-639")
public void echoEndpoint() throws Exception {
ConfigurableApplicationContext context = new SpringApplicationBuilder(
ClientConfiguration.class, PropertyPlaceholderAutoConfiguration.class)

Loading…
Cancel
Save