From a1ea7f18205dbb5b1523daa0bf15fb0977b9d374 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 25 Feb 2009 13:57:58 +0000 Subject: [PATCH] polishing --- ...llingViewTest.java => MarshallingViewTests.java} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) rename org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/{MarshallingViewTest.java => MarshallingViewTests.java} (96%) diff --git a/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTest.java b/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTests.java similarity index 96% rename from org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTest.java rename to org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTests.java index d962dfce3eb..97dab8f811f 100644 --- a/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTest.java +++ b/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2007 the original author or authors. + * Copyright 2002-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,8 +22,7 @@ import javax.servlet.ServletException; import javax.xml.transform.stream.StreamResult; import static org.easymock.EasyMock.*; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.fail; +import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; @@ -31,7 +30,10 @@ import org.springframework.mock.web.MockHttpServletRequest; import org.springframework.mock.web.MockHttpServletResponse; import org.springframework.oxm.Marshaller; -public class MarshallingViewTest { +/** + * @author Arjen Poutsma + */ +public class MarshallingViewTests { private MarshallingView view; @@ -135,4 +137,5 @@ public class MarshallingViewTest { } verify(marshallerMock); } -} \ No newline at end of file + +}