Last active
January 8, 2019 01:15
-
-
Save alefcarlos/13a2b474194ce89bf9605772f3ac1556 to your computer and use it in GitHub Desktop.
This file contains 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
[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