Пример #1
0
 public void AssertIfConvertRomanNumeralStringToInt32ThrowsArgumentException()
 {
     Assert.Throws <ArgumentException>(() => MathConvertor.ConvertRomanNumeralStringToInt32("IIL"));
 }
Пример #2
0
 public void AssertEqualResultOfConvertRomanNumeralStringToInt32()
 {
     Assert.Equal(3555, MathConvertor.ConvertRomanNumeralStringToInt32("MMMDLV"));
 }