コード例 #1
0
        public void Mul02()
        {
            MyMath txt = new MyMath();

            Assert.IsNotNull(txt.Mul(5, 5) == 25);
        }
コード例 #2
0
        public void Div01()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Div(15, 5), 3);
        }
コード例 #3
0
        public void Sub03()
        {
            MyMath txt = new MyMath();

            Assert.AreNotEqual(txt.Sub(14, 7), 6);
        }
コード例 #4
0
        public void Mul01()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Mul(5, 5), 25);
        }
コード例 #5
0
        public void Sub02()
        {
            MyMath txt = new MyMath();

            Assert.IsFalse(txt.Sub(14, 7) == 6);
        }
コード例 #6
0
        public void Sub01()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Sub(14, 7), 7);
        }
コード例 #7
0
        public void Add03()
        {
            MyMath txt = new MyMath();

            Assert.IsTrue(txt.Add(7, 7) == 14);
        }
コード例 #8
0
        public void Add02()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Add(7, 7), 14);
        }
コード例 #9
0
        public void Add01()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Add(5, 5), 10);
        }