Ejemplo n.º 1
0
        public static void RomanToArabic(this string input, int expected)
        {
            var item = new RomanNumerals();

            Assert.Equal(expected, RomanNumerals.RomanToArabic(input));
        }
Ejemplo n.º 2
0
        public static void ArabicToRoman(this int input, string expected)
        {
            var item = new RomanNumerals();

            Assert.Equal(expected, RomanNumerals.ArabicToRoman(input));
        }