📄 alltests.java
字号:
package itso.junit;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author UELI
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class AllTests {
public static void main(String[] args) {
junit.textui.TestRunner.run( suite() );
}
public static Test suite() {
TestSuite suite = new TestSuite("Test for itso.junit");
//$JUnit-BEGIN$
suite.addTest(new TestSuite(BankingTestTest.class));
//$JUnit-END$
return suite;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -