Polish "Add smoke tests for Spring Cloud Gateway WebMVC"

See gh-265
This commit is contained in:
Moritz Halbritter
2025-05-28 09:33:45 +02:00
parent 431e0eaa23
commit 0a13e4dbcb

View File

@@ -47,7 +47,8 @@ final class ApplicationUnderTest {
return this.port;
}
List<Pattern> portPatterns = List.of(Pattern.compile("Tomcat started on port ([0-9]+)"),
Pattern.compile("Netty started on port ([0-9]+)"), Pattern.compile("Jetty started on port ([0-9]+)"),
Pattern.compile("Netty started on port ([0-9]+)"),
Pattern.compile("Jetty started on port ([0-9]+)"),
Pattern.compile("Undertow started on port ([0-9]+)"));
List<String> lines = Output.current().lines();
for (String line : lines) {