📄 alltests.java
字号:
package com.visualpatterns.timex.test;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class AllTests extends TestCase
{
public static Test suite()
{
TestSuite modelTestSuite = new TestSuite("Model Tests");
modelTestSuite.addTestSuite(TimesheetManagerTest.class);
TestSuite controllerTestSuite = new TestSuite("Controller Tests");
controllerTestSuite.addTestSuite(TimesheetListControllerTest.class);
// Full test suite
TestSuite fullSuite = new TestSuite("All Tests");
fullSuite.addTest(modelTestSuite);
fullSuite.addTest(controllerTestSuite);
return fullSuite;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -