コード例 #1
0
        public static void RomanToArabic(this string input, int expected)
        {
            var item = new RomanNumerals();

            Assert.Equal(expected, RomanNumerals.RomanToArabic(input));
        }
コード例 #2
0
        public static void ArabicToRoman(this int input, string expected)
        {
            var item = new RomanNumerals();

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