コード例 #1
0
ファイル: MyMath.Test.cs プロジェクト: tan3su/Calkulator2
            public void TestAdddNegative()
            {
                MyMath math = new MyMath();

                Assert.AreEqual(30, math.Add(10, 20));
            }
コード例 #2
0
ファイル: MyMath.Test.cs プロジェクト: tan3su/Calkulator2
            public void TestAddMultiply()
            {
                MyMath math = new MyMath();

                Assert.Greater(math.Add(10, 30), 30);
            }
コード例 #3
0
ファイル: MyMath.Test.cs プロジェクト: tan3su/Calkulator2
            public void TestAddPositives()
            {
                MyMath math = new MyMath();

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