Skip to content

Instantly share code, notes, and snippets.

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