customertest.java
来自「一个完整的网上书店」· Java 代码 · 共 24 行
JAVA
24 行
package com.ascenttech.ebookstore.test;
import junit.framework.TestCase;
public class CustomerTest extends TestCase {
public static void main(String[] args) {
junit.textui.TestRunner.run(CustomerTest.class);
}
public CustomerTest(String arg0) {
super(arg0);
}
protected void setUp() throws Exception {
super.setUp();
}
protected void tearDown() throws Exception {
super.tearDown();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?