Enable reactive web integration tests

This commit is contained in:
Rossen Stoyanchev
2017-01-18 20:53:23 -05:00
parent 95da47f579
commit 9faaa22fd4
2 changed files with 6 additions and 4 deletions

View File

@@ -29,8 +29,6 @@ import org.springframework.http.server.reactive.bootstrap.ReactorHttpServer;
import org.springframework.http.server.reactive.bootstrap.RxNettyHttpServer;
import org.springframework.http.server.reactive.bootstrap.TomcatHttpServer;
import org.springframework.http.server.reactive.bootstrap.UndertowHttpServer;
import org.springframework.tests.Assume;
import org.springframework.tests.TestGroup;
import org.springframework.util.SocketUtils;
@RunWith(Parameterized.class)
@@ -57,8 +55,6 @@ public abstract class AbstractHttpHandlerIntegrationTests {
@Before
public void setup() throws Exception {
Assume.group(TestGroup.PERFORMANCE);
this.port = SocketUtils.findAvailableTcpPort();
this.server.setPort(this.port);
this.server.setHandler(createHttpHandler());