Skip to content

Instantly share code, notes, and snippets.

@scottsauber
Last active February 2, 2021 04:39
Show Gist options
  • Save scottsauber/2aaedd4fe53892680fa2c79cb29cb18f to your computer and use it in GitHub Desktop.
Save scottsauber/2aaedd4fe53892680fa2c79cb29cb18f to your computer and use it in GitHub Desktop.
[Fact]
public void AddShouldSumNumbers()
{
var result = CalculatorService.Add(1, 1);
Assert.Equal(3, result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment