Пример #1
0
        public void Add_InputIs3And2_Return5()
        {
            BinaryOp op     = new BinaryOp();
            var      result = op.Add(3, 2);

            Assert.AreEqual(result, 5);
        }