teststringutils.java~3~
来自「数据库应用程序.它比较全面的含盖了JAVA应用程序与数据库之间通讯的全过程.本程」· JAVA~3~ 代码 · 共 20 行
JAVA~3~
20 行
package chapter25;
import junit.framework.*;
public class TestStringUtils extends TestCase {
private StringUtils stringUtils = null;
protected void setUp() throws Exception {
super.setUp();
stringUtils = new StringUtils();
}
protected void tearDown() throws Exception {
stringUtils = null;
super.tearDown();
}
public void testString2Array() {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?