Esempio n. 1
0
 public void AssertIfConvertRomanNumeralStringToInt32ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() => MathConvertor.ConvertRomanNumeralStringToInt32("IIL"));
 }
Esempio n. 2
0
 public void AssertEqualResultOfConvertRomanNumeralStringToInt32()
 {
     Assert.Equal(3555, MathConvertor.ConvertRomanNumeralStringToInt32("MMMDLV"));
 }