?? alltests.java
字號:
package piytest;
import junit.framework.*;
/**
* TestSuite that runs all the piy tests
* @author David Vivash
* @version 1.0, 22/11/00
*/
public class AllTests {
public static Test suite ( ) {
TestSuite suite= new TestSuite("All PIY Tests");
suite.addTest(MapperTest.suite());
suite.addTest(piy.PIYNamerTest.suite());
suite.addTest(PIYClassLoaderTest.suite());
suite.addTest(PropertyTest.suite());
suite.addTest(ActionListTest.suite());
suite.addTest(FixedPropertyTest.suite());
return suite;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -