コード例 #1
0
 public void OrWith4ArgsReturnsCorrectValue(
     bool repeat, bool last, bool expected)
 {
     CombineOperators.Or(repeat, repeat, repeat, last)
     .Should().Be(expected);
 }
コード例 #2
0
 public void OrWith2ArgsReturnsCorrectValue(
     bool arg1, bool arg2, bool expected)
 {
     CombineOperators.Or(arg1, arg2).Should().Be(expected);
 }