This commit is contained in:
Athou
2026-02-19 23:06:03 +01:00
parent de7e4e9c69
commit 6fe326f052
5 changed files with 2 additions and 13 deletions

View File

@@ -48,7 +48,7 @@ public abstract class BaseIT {
private String webSocketUrl;
@BeforeEach
void init() throws IOException {
void beforeEach() throws IOException {
this.mockServerClient = ClientAndServer.startClientAndServer(0);
this.feedUrl = "http://localhost:" + mockServerClient.getPort() + "/";
@@ -62,7 +62,7 @@ public abstract class BaseIT {
}
@AfterEach
void cleanup() {
void afterEach() {
if (this.mockServerClient != null) {
this.mockServerClient.close();
}