Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created October 22, 2020 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/9ab348a17c0ff17ce80c6c353eb81a5c to your computer and use it in GitHub Desktop.
Save xximjasonxx/9ab348a17c0ff17ce80c6c353eb81a5c to your computer and use it in GitHub Desktop.
[Fact]
public void assert_adding_two_numbers_gives_their_sum()
{
// arrange
var numberOne = 10;
var numberTwo = 20;
// act
var result = numberOne + numberTwo;
// assert
Assert.Equal(30, result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment