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

📄 globaltestsuite.java

📁 jbpm的demo,带有流程设计
💻 JAVA
字号:
/** * $Source: /home/ws/rz65/CVS-Repository/WorkflowProjects/JBPM-Demo/src/test/testjbpmdemo/GlobalTestSuite.java,v $ * $Revision: 1.1 $ * $Date: 2005/03/05 12:16:30 $ * $Author: rz65 $ * * Copyright (c) 2005 Universitaet Karlsruhe (TH) / Rechenzentrum (RZ-UNI-UKA) * * RZ-UNI-KA makes no representations or warranties about the suitability * of this software, either express or implied, including but not limited * to the implied warranties of merchantability, fitness for a particular * purpose, or non-infringement. RZ-UNI-KA shall not be liable for any * damages as a result of using, modifying or distributing this software * or its derivatives. */package testjbpmdemo;import testjbpmdemo.AbstractJBPMDemoTestCase;import junit.framework.Test;import junit.framework.TestSuite;import junit.textui.TestRunner;/** * The global test suite. *  * <p> *  * @version $Revision: 1.1 $ * @author mailto:harald.meyer@rz.uni-karlsruhe.de */public class GlobalTestSuite extends AbstractJBPMDemoTestCase {	/**	 * Builds a test case instance.	 * 	 * @param name	 *            The name of the case.	 */	public GlobalTestSuite(String name) {		super(name);	}	/**	 * The stand-alone run main method.	 * 	 * @param args	 *            The run-time arguments (ignored)	 */	public static void main(String[] args) {		TestRunner.run(suite());	}	/**	 * Creates a test suite from this class.	 * 	 * @return The test suite that covers all test... methods	 */	public static Test suite() {		TestSuite result = new TestSuite("global test suite.");		result.addTest(testjbpmdemo.AllTests.suite());		result.addTest(testjbpmdemo.testbasic.AllTests.suite());		result.addTest(testjbpmdemo.testlogging.AllTests.suite());		result.addTest(testjbpmdemo.testutil.AllTests.suite());		return result;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -