public void MultiplicationTest() { Logic target = new Logic(); // TODO: Initialize to an appropriate value int a = 2; // TODO: Initialize to an appropriate value int b = 5; // TODO: Initialize to an appropriate value int expected = 10; // TODO: Initialize to an appropriate value int actual; actual = target.Multiplication(a, b); Assert.AreEqual(expected, actual); }