예제 #1
0
        public void Test_AddMethod()
        {
            BasicMaths bm  = new BasicMaths();
            double     res = bm.Add(10, 10);

            Assert.AreEqual(res, 20);
        }
예제 #2
0
        public void Test_AddMethod()
        {
            BasicMaths bm  = new BasicMaths();
            double     res = bm.Add(20.50, 20.50);

            Assert.AreEqual(41, res);
        }
예제 #3
0
        public void TestAddMethod()
        {
            BasicMaths bm     = new BasicMaths();
            double     result = bm.Add(10, 3);

            Assert.AreEqual(result, 13);
        }
        public void Test_AddMethod()
        {
            BasicMaths basicMaths = new BasicMaths();
            double     result     = basicMaths.Add(10, 10);

            Assert.AreEqual(result, 20);
        }
예제 #5
0
        //Unit test for adding the value
        public void AddTest()
        {
            //Arrange
            BasicMaths addValue = new BasicMaths();
            double     expected = 30;
            //Act
            double actual = addValue.Add(20, 10);

            //Assert
            Assert.AreEqual(expected, actual);
        }
예제 #6
0
        static void Main(string[] args)
        {
            BasicMaths obj = new BasicMaths();

            obj.Addition(20, 30);
            int a = obj.Add(50, 60);

            Console.WriteLine($"Addition from Return Method is {a}");
            obj.Sum();
            int b = obj.Multiply();

            Console.WriteLine($"Multiplication from Return Method is {b}");
            Console.ReadKey();
        }
예제 #7
0
        static void Main(string[] args)
        {
            BasicMaths   bm = new BasicMaths();
            string       strWriteFilePath = @"WriteLog.txt";
            StreamWriter swWriteFile      = File.CreateText(strWriteFilePath);

            for (int i = 0; i < 1000; i++)
            {
                double res1 = bm.Add(i, 1);
                double res2 = bm.Substract(i, 1);
                double res3 = bm.divide(i, 2);
                double res4 = bm.Multiply(i, 2);
                Console.WriteLine(res1.ToString() + ' ' + res2.ToString() + ' ' + res3.ToString() + ' ' + res4.ToString() + ' ');
                swWriteFile.WriteLine(res1.ToString() + ' ' + res2.ToString() + ' ' + res3.ToString() + ' ' + res4.ToString() + ' '); //写入读取的每行数据
                //Console.WriteLine(res2.ToString() + ' ');
                //Console.WriteLine(res3.ToString() + ' ');
                //Console.WriteLine(res4.ToString() + ' ' + '\n');
                System.Threading.Thread.Sleep(2000);
            }
        }
예제 #8
0
        public void Test_AddMethod()
        {
            double r = BasicMaths.Add(10, 10);

            Assert.AreEqual(r, 20);
        }