Browse Source

polishing

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@696 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 17 years ago
parent
commit
0680b65d22
  1. 13
      org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTests.java

13
org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTest.java → org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/xml/MarshallingViewTests.java

@ -1,5 +1,5 @@ @@ -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; @@ -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; @@ -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 { @@ -135,4 +137,5 @@ public class MarshallingViewTest {
}
verify(marshallerMock);
}
}
}
Loading…
Cancel
Save