Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
fa7dfb51
Commit
fa7dfb51
authored
Feb 26, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore tests that are broken by UNDERTOW-639
parent
65234ce4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
SampleWebSocketsApplicationTests.java
.../websocket/undertow/SampleWebSocketsApplicationTests.java
+2
-0
CustomContainerWebSocketsApplicationTests.java
...ertow/echo/CustomContainerWebSocketsApplicationTests.java
+2
-0
No files found.
spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/SampleWebSocketsApplicationTests.java
View file @
fa7dfb51
...
@@ -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.Log
;
import
org.apache.commons.logging.LogFactory
;
import
org.apache.commons.logging.LogFactory
;
import
org.junit.Ignore
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.junit.runner.RunWith
;
import
samples.websocket.undertow.client.GreetingService
;
import
samples.websocket.undertow.client.GreetingService
;
...
@@ -56,6 +57,7 @@ public class SampleWebSocketsApplicationTests {
...
@@ -56,6 +57,7 @@ public class SampleWebSocketsApplicationTests {
private
int
port
=
1234
;
private
int
port
=
1234
;
@Test
@Test
@Ignore
(
"UNDERTOW-639"
)
public
void
echoEndpoint
()
throws
Exception
{
public
void
echoEndpoint
()
throws
Exception
{
ConfigurableApplicationContext
context
=
new
SpringApplicationBuilder
(
ConfigurableApplicationContext
context
=
new
SpringApplicationBuilder
(
ClientConfiguration
.
class
,
PropertyPlaceholderAutoConfiguration
.
class
)
ClientConfiguration
.
class
,
PropertyPlaceholderAutoConfiguration
.
class
)
...
...
spring-boot-samples/spring-boot-sample-websocket-undertow/src/test/java/samples/websocket/undertow/echo/CustomContainerWebSocketsApplicationTests.java
View file @
fa7dfb51
...
@@ -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.Log
;
import
org.apache.commons.logging.LogFactory
;
import
org.apache.commons.logging.LogFactory
;
import
org.junit.Ignore
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.junit.runner.RunWith
;
import
samples.websocket.undertow.SampleUndertowWebSocketsApplication
;
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
();
private
static
int
PORT
=
SocketUtils
.
findAvailableTcpPort
();
@Test
@Test
@Ignore
(
"UNDERTOW-639"
)
public
void
echoEndpoint
()
throws
Exception
{
public
void
echoEndpoint
()
throws
Exception
{
ConfigurableApplicationContext
context
=
new
SpringApplicationBuilder
(
ConfigurableApplicationContext
context
=
new
SpringApplicationBuilder
(
ClientConfiguration
.
class
,
PropertyPlaceholderAutoConfiguration
.
class
)
ClientConfiguration
.
class
,
PropertyPlaceholderAutoConfiguration
.
class
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment