alltests.java

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

JAVA
30
字号
/*------------------------------------------------------------------------------Name:      AllTests.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Start all tests------------------------------------------------------------------------------*/package org.xmlBlaster.test.admin;import junit.framework.Test;import junit.framework.TestSuite;/** * This test client starts all known tests in directory xmlBlaster/testsuite/src/java/org/xmlBlaster/admin * these are remote tests between clients and a running xmlBlaster.  * <p /> * Invoke examples:<br /> * <pre> *    java junit.textui.TestRunner -noloading org.xmlBlaster.test.client.AllTests *    java junit.swingui.TestRunner -noloading org.xmlBlaster.test.client.AllTests * </pre> */public class AllTests{   public static Test suite() {      TestSuite suite= new TestSuite("All xmlBlaster admin tests");      suite.addTest(new TestSuite(TestAdminGet.class));     return suite;   }}

⌨️ 快捷键说明

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