使用 JUnitPerf 测试问题

发布于 2024-08-30 10:01:29 字数 260 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

不喜欢何必死缠烂打 2024-09-06 10:01:29

您可以将静态 AtomicInteger 添加为测试用例的种子,并将其作为测试的一部分进行增量,使用该种子作为为该测试生成测试条目的基础。在最简单的情况下,种子用作索引来查找数组中的测试数据。

例如

class MyTestCase extends TestCase
{
    static AtomicInteger seed = new AtomicInteger();

    public void testUpdateEntry()
    {
       int seedValue = seed.getAndIncrement();

       // generate entries from seed
       // write entries to db
    }

}

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.

class MyTestCase extends TestCase
{
    static AtomicInteger seed = new AtomicInteger();

    public void testUpdateEntry()
    {
       int seedValue = seed.getAndIncrement();

       // generate entries from seed
       // write entries to db
    }

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