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

📄 alltests.java

📁 JUNIT1.4源文件等等 源文件等等 源文件等等 源文件
💻 JAVA
字号:
package junit.samples;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 ( ) {		TestSuite suite= new TestSuite("All JUnit Tests");		suite.addTest(ListTest.suite());		suite.addTest(new TestSuite(junit.samples.money.MoneyTest.class));		suite.addTest(junit.tests.AllTests.suite());	    return suite;	}}

⌨️ 快捷键说明

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