예제 #1
0
파일: UnitTest1.cs 프로젝트: janeth182/ISIL
        public void TestMethod3()
        {
            CalculosHelper helper = new CalculosHelper();
            int            result = helper.Div(20, 10);

            Assert.AreEqual(2, result);
        }
예제 #2
0
파일: UnitTest1.cs 프로젝트: janeth182/ISIL
        public void TestMethod1()
        {
            CalculosHelper helper = new CalculosHelper();
            int            result = helper.Add(20, 10);

            Assert.AreEqual(30, result);
        }
예제 #3
0
파일: UnitTest1.cs 프로젝트: janeth182/ISIL
        public void TestMethod2()
        {
            CalculosHelper helper = new CalculosHelper();
            int            result = helper.Substract(20, 10);

            Assert.AreEqual(10, result);
        }