Пример #1
0
            public void TestAdddNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(30, math.Add(10, 20));
            }
Пример #2
0
            public void TestAddMultiply()
            {
                MyMath math = new MyMath();

                Assert.Greater(math.Add(10, 30), 30);
            }
Пример #3
0
            public void TestAddPositives()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(30, math.Add(10, 20));
            }