使用 JUnitPerf 测试问题
我正在使用 JUnitPerf 编写 JUnit 测试。在这里,我想生成一些条目并使用它们来更新数据库。为了测试数据库的容量,我希望同时或随机运行多个测试,因此我使用,例如:
Test loadTest = new LoadTest(testCase, n);
但是,仍然,我必须确保在每个测试中,将使用不同的更新源,以便不同的条目数据库中的内容将被更新。
所以我的问题是我怎样才能实现这一点?
多谢 艾伦
I'm writing a JUnit test using JUnitPerf. Here, I want to generate some entries and use them to update a database. To test the capacity of the database, I want several test to run simultaneously or randomly, so I use, for example:
Test loadTest = new LoadTest(testCase, n);
But, still, I have to insure that in each test, a different update source will be used so that a different entry in the database will be updated.
So my question is how can I realize this?
Thanks a lot
Allen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将静态
AtomicInteger
添加为测试用例的种子,并将其作为测试的一部分进行增量,使用该种子作为为该测试生成测试条目的基础。在最简单的情况下,种子用作索引来查找数组中的测试数据。例如
You can add a static
AtomicInteger
as a seed to your test case and increment this as part of the test, Use the seed as the basis for generating your test entry for that test. In the simplest case, the seed is used as an index to look up the test data in an array.E.g.