?? allinittest.java
字號(hào):
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllInitTest {
public static Test suite(){
TestSuite suite=new TestSuite("Test for com.free.com.simple");
suite.addTestSuite(SimpleInitTest.class);
TestSetup wrapper=new TestSetup(suite){
protected void setUp()throws Exception{
System.out.println("suite setup");
}
protected void tearDown()throws Exception{
System.out.println("suite tearDown");
}
};
return wrapper;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -