Beispiel #1
0
        static void Main(string[] args)
        {
            // The user turned to the view
            Console.WriteLine("---------------Welcome to calculator-------------");
            Console.WriteLine("Input operation type (+, -, *, /):");
            var operationType = Console.ReadLine();

            Console.Write("Input first number: ");
            var first = Convert.ToDecimal(Console.ReadLine());

            Console.Write("Input second number: ");
            var second = Convert.ToDecimal(Console.ReadLine());
            // !end

            // view send query to controller
            // controller updated model
            var model = new CalculatorController().InitModel(first, second);
            // !end

            // without using events, the view refers to the model to receive data
            var calculateResult = operationType switch
            {
                "+" => model.Sum(),
                "-" => model.Subtraction(),
                "*" => model.Multiplication(),
                "/" => model.Division(),
                _ => 0m,
            };

            Console.WriteLine($"\n\nResult - {calculateResult:f2}");
            // user get result
            // !end
        }
Beispiel #2
0
        public void TestDivideValues()
        {
            var json       = @"{'Dividend' : 11,'Divisor': 2}";
            var result     = _calculadora.Division(JObject.Parse(json));
            var jsonResult = JObject.Parse(result);

            Assert.IsTrue(jsonResult["Quotient"] != null);
            Assert.IsTrue(jsonResult["Quotient"].ToObject <int>() == 5);
            Assert.IsTrue(jsonResult["Remainder"] != null);
            Assert.IsTrue(jsonResult["Remainder"].ToObject <int>() == 1);
        }