Пример #1
0
        public void Run(string expected, int input)
        {
            //Arrange
            var romanNumeralsLogic = new RomanNumeralsLogic();

            //Act
            var result = romanNumeralsLogic.Get(input);

            //Assert
            Assert.AreEqual(expected, result);
        }
Пример #2
0
        static void Main(string[] args)
        {
            var romanNumeralsLogic = new RomanNumeralsLogic();

            Console.Write("Write here a number between 1 and 3000: ");

            var input    = Console.ReadLine();
            int inputInt = Int32.Parse(input);
            var result   = romanNumeralsLogic.Get(inputInt);


            Console.WriteLine(result);
            Console.ReadLine();
        }