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

📄 alltests.java

📁 JUnit, java testing tool
💻 JAVA
字号:
package junit.tests.runner;import junit.framework.Test;import junit.framework.TestSuite;/** * 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(StackFilterTest.class);		suite.addTestSuite(BaseTestRunnerTest.class);		suite.addTestSuite(TextFeedbackTest.class);		suite.addTestSuite(TextRunnerSingleMethodTest.class);		suite.addTestSuite(TextRunnerTest.class);		return suite;	}		static boolean isJDK11() {		String version= System.getProperty("java.version");		return version.startsWith("1.1");	}}

⌨️ 快捷键说明

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