Beispiel #1
0
 public void RomanToArabic(int expected, string numeral)
 {
     var num = new RomanInt(numeral);
     num.Value.Should().Be(expected);
 }
Beispiel #2
0
 public void ArabicToRoman(int value, string expected)
 {
     var num = new RomanInt(value);
     num.ToString().Should().Be(expected);
 }