Common Mutant Operators
if (a && b)
if (a || b)
private bool notUseful(const uint num1, const uint num2)
{
if (num1 > 5 || num2 < 10)
return true;
else
return false;
}
unittest
{
assert(notUseful(6, 2));
assert(!notUseful(4, 11));
}
//The following should be included!
assert(notUseful(2, 2));