Rename to AbstractReactiveWebSocketIntegrationTests to avoid duplicate class names

This commit is contained in:
Sam Brannen
2022-11-28 17:43:39 +01:00
parent db02c96c55
commit 1bb723b9e0
2 changed files with 3 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ import org.springframework.web.testfixture.http.server.reactive.bootstrap.Tomcat
import org.springframework.web.testfixture.http.server.reactive.bootstrap.UndertowHttpServer;
/**
* Base class for WebSocket integration tests. Subclasses must implement
* Base class for reactive WebSocket integration tests. Subclasses must implement
* {@link #getWebConfigClass()} to return Spring config class with (server-side)
* handler mappings to {@code WebSocketHandler}'s.
*
@@ -77,7 +77,7 @@ import org.springframework.web.testfixture.http.server.reactive.bootstrap.Undert
* @author Sam Brannen
*/
@SuppressWarnings({"unused", "WeakerAccess"})
abstract class AbstractWebSocketIntegrationTests {
abstract class AbstractReactiveWebSocketIntegrationTests {
private static final File TMP_DIR = new File(System.getProperty("java.io.tmpdir"));

View File

@@ -50,7 +50,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Sam Brannen
* @author Brian Clozel
*/
class WebSocketIntegrationTests extends AbstractWebSocketIntegrationTests {
class WebSocketIntegrationTests extends AbstractReactiveWebSocketIntegrationTests {
private static final Log logger = LogFactory.getLog(WebSocketIntegrationTests.class);