Skip to content

Instantly share code, notes, and snippets.

@alefcarlos
Created January 8, 2019 01:22
Show Gist options
  • Save alefcarlos/329b020affc7de8cef76449e161e758d to your computer and use it in GitHub Desktop.
Save alefcarlos/329b020affc7de8cef76449e161e758d to your computer and use it in GitHub Desktop.
[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