alltests.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 24 行

JAVA
24
字号
package org.xmlBlaster.test.classtest.msgstore;import junit.framework.*;/** * TestSuite that runs all the sample tests.  * <pre> * java org.xmlBlaster.test.classtest.msgstore.AllTests * java -Djava.compiler= org.xmlBlaster.test.classtest.msgstore.AllTests * java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.classtest.msgstore.AllTests * </pre> */public class AllTests {   public static void main (String[] args) {      junit.textui.TestRunner.run (suite());   }   public static Test suite ( ) {      TestSuite suite= new TestSuite("All xmlBlaster msgUnitStore tests");      suite.addTest(I_MapTest.suite());      suite.addTest(MsgUnitWrapperTest.suite());      return suite;   }}

⌨️ 快捷键说明

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