我正在使用 JUnitPerf 编写 JUnit 测试。在这里,我想生成一些条目并使用它们来更新数据库。为了测试数据库的容量,我想同时或随机运行几个测试,所以我使用,例如:
Test loadTest = new LoadTest(testCase, n);
但是,我仍然必须确保在每个测试中,将使用不同的更新源,以便更新数据库中的不同条目。
所以我的问题是我怎么能意识到这一点?
非常感谢艾伦
您可以将静态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
}
}