Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2.  
  3. [TestMethod]
  4. public void Test_Divide()
  5. {
  6. int expected = 5;
  7. double actual = 5;
  8. Assert.AreEqual(expected, actual);
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement