使用 JUnit 执行插入
我需要使用 JUnit 测试将数据插入表中。这可能吗?如果是这样,怎么办?谢谢!
I need to insert data into a table using JUnit tests. Is this possible? If so, how? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 DBUnit。
Check out DBUnit.
您可以使用 JDBC 和常规插入语句来执行此操作。
请参阅 Java JDBC 教程以开始使用: http://download.oracle.com/javase/tutorial /jdbc/
You can use JDBC and regular insert statements to do this.
See the Java JDBC tutorial to get started: http://download.oracle.com/javase/tutorial/jdbc/
我没有时间给你写样本。
您对此很陌生,因此可能会超出您的能力范围,但我建议您研究一些 Spring 3 示例,即使您不使用 Spring。这些想法将帮助您编写更好的测试。
关键是使您的测试具有事务性:执行 INSERT,检查结果,并在完成后回滚事务。就好像您的测试从未存在过一样。
http://static.springsource.org /spring/docs/3.0.x/spring-framework-reference/html/testing.html
I don't have time to write a sample for you.
You're new to this, so it's likely to be over your head, but I'd recommend that you study some Spring 3 examples even if you don't use Spring. The ideas will help you to write better tests.
The key is to make your tests transactional: Do your INSERT, check the result, and roll the transaction back when you're done. It should be as if your test was never there.
http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/testing.html