Clean up "abstract" test issues

- Deleted empty AbstractWebSocketClientTests class.

 - AbstractServletHandlerMethodTests and AbstractHttpRequestTests are
   now actually declared as abstract.

 - The following classes are not abstract but currently have an
   "Abstract" prefix and therefore get ignored by the Gradle build.
   This commit renames each of these by deleting the "Abstract" prefix.

   - AbstractFlashMapManagerTests
   - AbstractMappingContentNegotiationStrategyTests
   - AbstractSockJsServiceTests
   - AbstractWebSocketHandlerRegistrationTests
This commit is contained in:
Sam Brannen
2014-03-05 12:10:10 +01:00
parent b42f258c54
commit 9891bdc7b4
8 changed files with 13 additions and 38 deletions

View File

@@ -40,7 +40,7 @@ import org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolv
*
* @author Rossen Stoyanchev
*/
public class AbstractServletHandlerMethodTests {
public abstract class AbstractServletHandlerMethodTests {
private DispatcherServlet servlet;

View File

@@ -40,7 +40,7 @@ import static org.junit.Assert.*;
*
* @author Rossen Stoyanchev
*/
public class AbstractFlashMapManagerTests {
public class FlashMapManagerTests {
private TestFlashMapManager flashMapManager;