You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,7 +43,7 @@ public void ThreeDigitFloorPaisa()
44
43
decimalamt=11_321.924M;
45
44
stringexpectedResult="Eleven thousand three hundred twenty one rupees ninety two paisa only";
46
45
varresult=amt.ToCurrencyWords();
47
-
Assert.AreEqual(result,expectedResult);
46
+
Assert.That(Is.Equals(result,expectedResult));
48
47
}
49
48
50
49
[Test]
@@ -53,7 +52,7 @@ public void ThreeDigitCeilingPaisa()
53
52
decimalamt=11_321.929M;
54
53
stringexpectedResult="Eleven thousand three hundred twenty one rupees ninety three paisa only";
55
54
varresult=amt.ToCurrencyWords();
56
-
Assert.AreEqual(result,expectedResult);
55
+
Assert.That(Is.Equals(result,expectedResult));
57
56
}
58
57
59
58
[Test]
@@ -62,7 +61,7 @@ public void ShankhaExtension()
62
61
decimalamt=9_800_777_660_544_100_110_321.99M;
63
62
stringexpectedResult="Nine sextillion eight hundred quintillion seven hundred seventy seven quadrillion six hundred sixty trillion five hundred forty four billion one hundred million one hundred ten thousand three hundred twenty one rupees ninety nine paisa only";
0 commit comments