⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 springtests.java

📁 在Struts2中的jar包xwork的源代码.版本为2.0.7
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -