📄 alltests.java
字号:
package org.fosstrak.reader.rprm.core.mgmt.util;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* All tests for package <code>org.fosstrak.reader.mgmt.util</code> and its subpackages.
*/
public class AllTests {
/**
* Creates the test.
* @return The test
*/
public static Test suite() {
String className = AllTests.class.getName();
String packageName = className.substring(0, className.lastIndexOf('.'));
TestSuite suite = new TestSuite("All Tests for package <" + packageName + "> and its subpackages");
suite.addTest(UtilTestSuite.suite());
//
// Add more tests here
//
return suite;
}
/**
* Runs the test suite using the gui runner.
* @param args No arguments
*/
public static void main(String[] args) {
junit.swingui.TestRunner.run(AllTests.class);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -