Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mallibone/1b1644fcbc2f7e48ec1391118d678704 to your computer and use it in GitHub Desktop.
Save mallibone/1b1644fcbc2f7e48ec1391118d678704 to your computer and use it in GitHub Desktop.
public class Tests
{
[Fact]
public void IsEvenNumber_WhenGivenAnEvenNumber_ItReturnsTrue()
{
var gna = new Gnabber();
Assert.True(gna.IsEvenNumber(42));
}
[Fact]
public void IsEvenNumber_WhenGivenAnUnevenNumber_ItReturnsFalse()
{
var gna = new Gnabber();
Assert.False(gna.IsEvenNumber(1337));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment