testrelationdetailbo.java
来自「bs_客户关系管理系统 每个例子文件夹都附有数据库表、程序源文件和一个war包」· Java 代码 · 共 29 行
JAVA
29 行
package test;
import junit.framework.*;
import bo.*;
import java.util.*;
public class TestRelationDetailBo extends TestCase {
private RelationDetailBo relationDetailBo = null;
protected void setUp() throws Exception {
super.setUp();
/**@todo verify the constructors*/
relationDetailBo = RelationDetailBo.getInstance();
}
protected void tearDown() throws Exception {
relationDetailBo = null;
super.tearDown();
}
public void testGetAllRelationDetailList() {
List expectedReturn = null;
// List actualReturn = relationDetailBo.getAllRelationDetailList();
//assertEquals("return value", expectedReturn, actualReturn);
/**@todo fill in the test code*/
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?