Created
January 8, 2019 01:22
-
-
Save alefcarlos/329b020affc7de8cef76449e161e758d 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
[Theory] | |
[InlineData(3, 3)] | |
[InlineData(3, 6)] | |
[InlineData(3, 9)] | |
[InlineData(5, 5)] | |
[InlineData(5, 10)] | |
[InlineData(5, 15)] | |
public void Multiple_ShouldSuccess(int y, int x) | |
{ | |
Helpers.IsMultipleOf(y, x).ShouldBeTrue(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment