在我的项目中,我重载了函数 GetPrimeList(int max) 和 GetPrimeList(long max)。
GetPrimeList(int max) 已正确实现,但是对于低于 10 的数字(目前),需要 long as 参数的参数应该失败;
我已经写了测试
[TestCase(1, 0)]
[TestCase(3, 1)]
public void GetPrimeList_ShouldReturnAllPrimesBelowGivenNumber(int max, int result)
{
var primes = PrimeHelper.GetPrimeList(max);
Assert.AreEqual(result, primes.Count);
}
[TestCase(1, 0)]
[TestCase(3, 1)]
public void GetPrimeList_ShouldReturnAllPrimesBelowGivenNumber(long max, int result)
{
var primes = PrimeHelper.GetPrimeList(max);
Assert.AreEqual(result, primes.Count);
}
现在,当我在正常模式下运行测试时,它们都通过了,但是当我在调试模式下运行它们时,长参数测试失败(如预期的那样)。
有单独的测试项目;当我在原始项目中调用函数时,我无法重现行为(试图比较发布和调试模式)。我也尝试在我的测试项目中关闭代码优化,但它并没有解决问题。
知道如何修复我的测试项目吗?