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

📄 alltests.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
package org.xmlBlaster.test.contrib.db;import junit.framework.Test;import junit.framework.TestSuite;/** * TestSuite that runs all the sample tests.  * <pre> * java -Ddb.password=secret -Djava.compiler= org.xmlBlaster.test.contrib.db.AllTests * java -Ddb.password=secret -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.contrib.db.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 contrib.db plugin tests");      suite.addTest(new TestSuite(org.xmlBlaster.test.contrib.db.TestDbStorage.class));      return suite;   }   // To force compilation:   public void dummy() {      new TestDbStorage(null);   }}

⌨️ 快捷键说明

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