Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
[TestMethod]
public void shouldaddtwonumbers()
{
int res = _calc.Add(5, 3);
Assert.AreEqual(res, 8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment