Guest User

Untitled

a guest
Nov 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. [Theory]
  2. [ClassData(typeof(SampleData))]
  3. public void IsValidSomething(int x, int y, int expected)
  4. {
  5. var service = new DemoService();
  6. var actual = service.EvaluateExclusiveOr(x, y);
  7. Assert.Equal(expected, actual);
  8. }
Add Comment
Please, Sign In to add comment