📄 testrelationdetailbo.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -