Esempio n. 1
0
        public void Mul02()
        {
            MyMath txt = new MyMath();

            Assert.IsNotNull(txt.Mul(5, 5) == 25);
        }
Esempio n. 2
0
        public void Mul01()
        {
            MyMath txt = new MyMath();

            Assert.AreEqual(txt.Mul(5, 5), 25);
        }