Skip to content

Instantly share code, notes, and snippets.

@javierguerrero
Created December 28, 2020 15:27
Show Gist options
  • Save javierguerrero/12f074b866bbb8dbb228c96cbf46896e to your computer and use it in GitHub Desktop.
Save javierguerrero/12f074b866bbb8dbb228c96cbf46896e to your computer and use it in GitHub Desktop.
xUnit Fact
[Fact]
public void IsPrime_InputIs1_ReturnFalse()
{
var primeService = new PrimeService();
bool result = primeService.IsPrime(1);
Assert.False(result, "1 should not be prime");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment