Welcome

首页 / 软件开发 / 数据结构与算法 / 通向架构师的道路 第二十五天 SSH的单元测试与dbunit的整合(下)

通向架构师的道路 第二十五天 SSH的单元测试与dbunit的整合(下)2013-02-22 csdn lifetragedy3.4使用框架

我们准备两份测试用数据

test_del_table.xml文件

<?xml version="1.0" encoding="UTF-8"?> <Tables><table>t_student</table> </Tables>
test_insert_table.xml文件

<?xml version="1.0" encoding="UTF-8"?> <dataset> <t_student student_no="101" student_name="alice"/> <t_student student_no="102" student_name="jil"/> <t_student student_no="103" student_name="leon"/> <t_student student_no="104" student_name="chris"/> <t_student student_no="105" student_name="Ada Wong"/> </dataset>