奇怪的测试行为。 我有一个生成随机值的类。
std::random_device RandomProvider::rd;
std::mt19937 RandomProvider::rnb(RandomProvider::rd());
#define mainDataType unsigned int
mainDataType RandomProvider::GetNextValue(mainDataType upperLimit)
{
static std::uniform_int_distribution<int> uniform_dist(1, upperLimit);
return uniform_dist(rnb);
}
用于测试其行为的单元测试。
TEST_METHOD(TestRandomNumber)
{
CreateOper(RandomNumber);
int one = 0, two = 0, three = 0, unlim = 0;
const int cycles = 10000;
for (int i = 0; i < cycles; i++)
{
mainDataType res = RandomProvider::GetNextValue(3);
if (res == 1) one++;
if (res == 2) two++;
if (res == 3) three++;
}
double onePerc = one / (double)cycles;
double twoPerc = two / (double)cycles;
double threePerc = three / (double)cycles;
Assert::IsTrue(onePerc > 0.20 && onePerc < 0.40);
Assert::IsTrue(twoPerc > 0.20 && twoPerc < 0.40);
Assert::IsTrue(threePerc > 0.20 && threePerc < 0.40);
}
测试在调试中一直传递,如果我选择它并仅运行它。但是当我这一切都失败了 用其他测试运行它。我将调试输出添加到文本文件中并获得了不真实的值onePerc = 0.0556,twoPerc = 0.0474和threePerc = 0.0526 ......这里发生了什么? (我正在使用VS2013 RC)
答案 0 :(得分:1)
由于您在第一次调用uniform_int_distribution
时使用静态GetNextValue
,因此设置了最大限制,在任何后续调用中都不会更改。大概在您提到的测试用例中,您对GetNextValue
的第一次调用与3
的值不同。从返回的值来看,看起来在第一次这样的调用中可能使用了19或20。