📄 testall.java
字号:
package org.rakiura.cpn.sample;/**/import junit.framework.TestSuite;import junit.framework.Test;import junit.textui.TestRunner;/** * Test utility for the whole org.rakiura.cpn.sample package. Run this test for * integrated test suite for all classes from this package. * *<br> * TestAll.java<br> * <br> * Created: Fri Oct 29 17:42:14 1999<br> * * @author Mariusz Nowostawski * @version $Revision: 1.1 $ */public class TestAll { /** */ public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest(TestMaxValueExample.suite()); suite.addTest(TestTwoTasksExample.suite()); return suite; } /** * Execute all tests. */ public static void main(String[] args){ TestRunner.run(TestAll.suite()); }} // TestAll//////////////////// end of file ////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -