Exemplo n.º 1
0
        public void Test1()
        {
            int first  = 1;
            int second = 2;

            //act
            int sum = BasicProgramming.DoubleSum(second, first);

            //assert
            Assert.AreEqual(3, sum);
        }
Exemplo n.º 2
0
        public void Test8()
        {
            int first  = 3;
            int second = 4;

            //act
            int sum = BasicProgramming.DoubleSum(second, first);

            //assert
            Assert.AreEqual(7, sum);
        }