📄 debugtesttest.java
字号:
/* * DebugTestTest.java * JUnit based test * * Created on 2005年7月20日, 上午11:33 */package jbookch9;import junit.framework.*;/** * * @author Liu Yi ( http://www.liu-yi.net ) */public class DebugTestTest extends TestCase { public DebugTestTest(String testName) { super(testName); } protected void setUp() throws java.lang.Exception { } protected void tearDown() throws java.lang.Exception { } public static junit.framework.Test suite() { junit.framework.TestSuite suite = new junit.framework.TestSuite(DebugTestTest.class); return suite; } /** * main 方法的测试(属于类 jbookch10.DebugTest)。 */ public void testMain() { // TODO 通过替换失败的缺省调用在下面添加测试代码。 } // TODO add test methods here. The name must begin with 'test'. For example: // public void testHello() {} }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -