Last active
February 2, 2021 04:39
-
-
Save scottsauber/2aaedd4fe53892680fa2c79cb29cb18f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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