public void Print_1_I()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(1);

            result.ShouldBe("I");
        }
        public void Print_1954_MCMLIV()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(1954);

            result.ShouldBe("MCMLIV");
        }
        public void Print_1990_MCMXC()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(1990);

            result.ShouldBe("MCMXC");
        }
        public void Print_1000_M()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(1000);

            result.ShouldBe("M");
        }
        public void Print_105_CV()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(105);

            result.ShouldBe("CV");
        }
        public void Print_2014_MMXIV()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(2014);

            result.ShouldBe("MMXIV");
        }
        public void Print_9_IX()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(9);

            result.ShouldBe("IX");
        }
        public void Print_800_DCCC()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(800);

            result.ShouldBe("DCCC");
        }
        public void Print_7_VII()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(7);

            result.ShouldBe("VII");
        }
        public void Print_50_L()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(50);

            result.ShouldBe("L");
        }
        public void Print_4_IV()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(4);

            result.ShouldBe("IV");
        }
        public void Print_40_XL()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(40);

            result.ShouldBe("XL");
        }
        public void Print_30_XXX()
        {
            var sut = new RomanNumeralsPrinter();

            string result = sut.Print(30);

            result.ShouldBe("XXX");
        }