Skip to content

Instantly share code, notes, and snippets.

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