Skip to content

Instantly share code, notes, and snippets.

@alefcarlos
Last active January 8, 2019 01:15
Show Gist options
  • Save alefcarlos/13a2b474194ce89bf9605772f3ac1556 to your computer and use it in GitHub Desktop.
Save alefcarlos/13a2b474194ce89bf9605772f3ac1556 to your computer and use it in GitHub Desktop.
[Fact]
public void MultpleOf_ShouldThrowExpcetion()
{
Should.Throw<ArgumentException>(() =>
{
Helpers.IsMultipleOf(0, 3);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment