Created
June 7, 2017 06:21
-
-
Save mallibone/1b1644fcbc2f7e48ec1391118d678704 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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