Ejemplo n.º 1
0
        public void NotNullMul02Asserts()
        {
            var actual = new MyMath();

            Assert.IsNotNull(actual.Mul(2, 2));
        }
Ejemplo n.º 2
0
        public void CompareMul01Asserts()
        {
            var actual = new MyMath();

            Assert.AreEqual(0, actual.Mul(1, 1));
        }
Ejemplo n.º 3
0
        public void Mul04()
        {
            MyMath math = new MyMath();

            Assert.That(math.Mul(12, 1024), Is.Not.Null);
        }
Ejemplo n.º 4
0
        public void Mul03()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(math.Mul(12, 1024), math.Mul(1024, 12));
        }
Ejemplo n.º 5
0
        public void Mul02()
        {
            MyMath math = new MyMath();

            Assert.IsNotNull(math.Mul(12, 1024));
        }
Ejemplo n.º 6
0
        public void Mul01()
        {
            MyMath math = new MyMath();

            Assert.AreEqual(-10, math.Mul(2, -5));
        }