public void TestMultiplyMethod() { BasicMaths bm = new BasicMaths(); double result = bm.Multiply(10, 3); Assert.AreEqual(result, 30); }
public void Test_MultiplyMethod() { BasicMaths bm = new BasicMaths(); double res = bm.Multiply(10, 10); Assert.AreEqual(res, 50); }
public void Test_MultiplyMethod() { BasicMaths basicMaths = new BasicMaths(); double result = basicMaths.Multiply(10, 10); Assert.AreEqual(100, result); }
public void MultiplyTest() { //Arrange BasicMaths mul = new BasicMaths(); double expected = 200; //Act double actual = mul.Multiply(20, 10); //Assert Assert.AreEqual(expected, actual); }
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(); }
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); } }
public void Test_MultiplyMethod() { double r = BasicMaths.Multiply(10, 10); Assert.AreEqual(r, 100); }