Browse Source

Move websocket config tests to annotation package

pull/423/head
Rossen Stoyanchev 11 years ago
parent
commit
cea049b791
  1. 2
      spring-websocket/src/main/resources/META-INF/spring.tooling
  2. 2
      spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/AbstractWebSocketHandlerRegistrationTests.java
  3. 2
      spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebMvcStompEndpointRegistrationTests.java
  4. 2
      spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebMvcStompEndpointRegistryTests.java
  5. 2
      spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationTests.java
  6. 2
      spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebSocketMessageBrokerConfigurationSupportTests.java

2
spring-websocket/src/main/resources/META-INF/spring.tooling

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
# Tooling related information for the mvc namespace
http\://www.springframework.org/schema/websocket@name=websocket Namespace
http\://www.springframework.org/schema/websocket@prefix=websocket
http\://www.springframework.org/schema/websocket@icon=org/springframework/web/socket/server/config/xml/spring-websocket.gif
http\://www.springframework.org/schema/websocket@icon=org/springframework/web/socket/config/spring-websocket.gif

2
spring-websocket/src/test/java/org/springframework/web/socket/config/AbstractWebSocketHandlerRegistrationTests.java → spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/AbstractWebSocketHandlerRegistrationTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.web.socket.config;
package org.springframework.web.socket.config.annotation;
import java.util.ArrayList;
import java.util.Arrays;

2
spring-websocket/src/test/java/org/springframework/web/socket/config/WebMvcStompEndpointRegistrationTests.java → spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebMvcStompEndpointRegistrationTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.web.socket.config;
package org.springframework.web.socket.config.annotation;
import java.util.Arrays;
import java.util.List;

2
spring-websocket/src/test/java/org/springframework/web/socket/config/WebMvcStompEndpointRegistryTests.java → spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebMvcStompEndpointRegistryTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.web.socket.config;
package org.springframework.web.socket.config.annotation;
import java.util.Map;

2
spring-websocket/src/test/java/org/springframework/web/socket/config/WebSocketConfigurationTests.java → spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebSocketConfigurationTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.web.socket.config;
package org.springframework.web.socket.config.annotation;
import java.util.Arrays;
import java.util.concurrent.CountDownLatch;

2
spring-websocket/src/test/java/org/springframework/web/socket/config/WebSocketMessageBrokerConfigurationSupportTests.java → spring-websocket/src/test/java/org/springframework/web/socket/config/annotation/WebSocketMessageBrokerConfigurationSupportTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.web.socket.config;
package org.springframework.web.socket.config.annotation;
import java.util.ArrayList;
import java.util.List;
Loading…
Cancel
Save