我正在使用JUnitPerf编写JUnit测试。在这里,我想生成一些条目并使用它们来更新数据库。为了测试数据库的容量,我想要同时或随机运行多个测试,所以我使用,例如:
Test loadTest = new LoadTest(testCase, n);
但是,我必须确保在每次测试中都会使用不同的更新源,以便更新数据库中的不同条目。
所以我的问题是我怎么能意识到这一点?
非常感谢 艾伦
答案 0 :(得分:1)
您可以将静态AtomicInteger
作为种子添加到测试用例中,并将其作为测试的一部分递增,使用种子作为生成该测试的测试条目的基础。在最简单的情况下,种子用作索引以在数组中查找测试数据。
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
}
}