您将使用什么技术使测试通过?
干杯,
Berryl
[Test]
public void PercentageToSplit() {
for (int i = 1; i < 20; i++) {
decimal ratio = 1m / i;
Console.WriteLine(ratio);
var splitCount = (int)Math.Floor(1 / ratio); // *** this won't do
Console.WriteLine(splitCount );
Assert.That(splitCount, Is.EqualTo(i));
}
1 becomes 1
0.5 becomes 2
0.3333333333333333333333333333 becomes 3
0.25 becomes 4
0.2 becomes 5
0.1666666666666666666666666667 becomes 5
Test 'PercentageToSplit' failed:
Expected: 6
But was: 5
答案 0 :(得分:2)
如果您将Math.Floor
更改为Math.Round
,则您的测试通过。