📄 alltests.java
字号:
/* * Created on Jan 7, 2004 * */package jboost;import jboost.booster.BoosterTestSuite;import jboost.controller.ControllerTestSuite;import jboost.atree.AtreeTestSuite;import junit.framework.Test;import junit.framework.TestSuite;/** * * @author cschavis */public class AllTests { public static Test suite() { TestSuite suite= new TestSuite("Test for jboost"); //$JUnit-BEGIN$ suite.addTest(BoosterTestSuite.suite()); suite.addTest(ControllerTestSuite.suite()); suite.addTest(AtreeTestSuite.suite()); //$JUnit-END$ return suite; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -