📄 alltests.java
字号:
package com.wxd.common.popedom.persistence;
import junit.framework.*;
import junit.runner.BaseTestRunner;
/**
* TestSuite that runs all the sample tests
*
*/
public class AllTests {
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
}
public static Test suite() { // Collect tests manually because we have to test class collection code
TestSuite suite= new TestSuite("Framework Tests");
suite.addTestSuite(ActionDaoTest.class);
suite.addTestSuite(DbDaoTest.class);
suite.addTestSuite(RoleDaoTest.class);
suite.addTestSuite(OperatorDaoTest.class);
return suite;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -