使用 JUnit 执行插入

发布于 2024-12-04 16:37:06 字数 47 浏览 2 评论 0原文

我需要使用 JUnit 测试将数据插入表中。这可能吗?如果是这样,怎么办?谢谢!

I need to insert data into a table using JUnit tests. Is this possible? If so, how? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

与往事干杯 2024-12-11 16:37:06

查看 DBUnit

DbUnit 是一个 JUnit 扩展(也可与 Ant 一起使用),针对数据库驱动的项目,除其他外,它可以在测试运行之间将数据库置于已知状态。这是一种很好的方法,可以避免当一个测试用例损坏数据库并导致后续测试失败或加剧损坏时可能出现的无数问题。

DbUnit 能够将数据库数据导出到 XML 数据集或从 XML 数据集导入数据库数据。从 2.0 版开始,DbUnit 在流模式下使用时还可以处理非常大的数据集。 DbUnit 还可以帮助您验证数据库数据是否与预期的值集匹配。

Check out DBUnit.

DbUnit is a JUnit extension (also usable with Ant) targeted at database-driven projects that, among other things, puts your database into a known state between test runs. This is an excellent way to avoid the myriad of problems that can occur when one test case corrupts the database and causes subsequent tests to fail or exacerbate the damage.

DbUnit has the ability to export and import your database data to and from XML datasets. Since version 2.0, DbUnit can also work with very large datasets when used in streaming mode. DbUnit can also help you to verify that your database data match an expected set of values.

橙味迷妹 2024-12-11 16:37:06

您可以使用 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/

朦胧时间 2024-12-11 16:37:06

我没有时间给你写样本。

您对此很陌生,因此可能会超出您的能力范围,但我建议您研究一些 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文