Made StrutsJunit4 classes abstract

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1153918 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maurizio Cucchiara
2011-08-04 16:12:15 +00:00
parent f219d9e468
commit ac0679e3ed
2 changed files with 2 additions and 2 deletions
@@ -54,7 +54,7 @@ import java.util.logging.Logger;
import static org.junit.Assert.assertNotNull;
public class StrutsJUnit4TestCase<T> extends XWorkJUnit4TestCase {
public abstract class StrutsJUnit4TestCase<T> extends XWorkJUnit4TestCase {
protected MockHttpServletResponse response;
protected MockHttpServletRequest request;
protected MockPageContext pageContext;
@@ -31,7 +31,7 @@ import org.springframework.web.context.WebApplicationContext;
* Date: 04/08/11
* Time: 16.50
*/
public class StrutsSpringJUnit4TestCase<T> extends StrutsJUnit4TestCase<T> implements ApplicationContextAware {
public abstract class StrutsSpringJUnit4TestCase<T> extends StrutsJUnit4TestCase<T> implements ApplicationContextAware {
protected ApplicationContext applicationContext;
@Override