📄 testsubsection.java~3~
字号:
package chapter25;
import junit.framework.*;
public class TestSubsection
extends TestCase
{
private Subsection subsection = null;
protected void setUp() throws Exception {
super.setUp();
subsection = new Subsection();
}
protected void tearDown() throws Exception {
subsection = null;
super.tearDown();
}
public void testGetValue() {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -