springtests.java
来自「在Struts2中的jar包xwork的源代码.版本为2.0.7」· Java 代码 · 共 31 行
JAVA
31 行
package com.opensymphony.xwork2.spring;import com.opensymphony.xwork2.config.providers.XmlConfigurationProviderInterceptorsSpringTest;import com.opensymphony.xwork2.spring.interceptor.ActionAutowiringInterceptorTest;import junit.framework.Test;import junit.framework.TestSuite;/** * Collect all the unit tests for the Spring/XWork integration classes here. * * @author Simon Stewart */public class SpringTests { public static Test suite() { TestSuite suite = new TestSuite( "Test for com.opensymphony.xwork2.spring"); //$JUnit-BEGIN$ suite.addTestSuite(SpringObjectFactoryTest.class); suite.addTestSuite(ActionsFromSpringTest.class); suite.addTestSuite(InjectSpringObjectFactoryTest.class); suite.addTestSuite(ActionAutowiringInterceptorTest.class); suite.addTestSuite(XmlConfigurationProviderInterceptorsSpringTest.class); //$JUnit-END$ return suite; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?