Exemplo n.º 1
0
 public void Returns_False_For_Less_Specific_Range(StatusCodeRange x, StatusCodeRange y)
 {
     x.IsMoreSpecificThan(y).Should().BeFalse();
 }
Exemplo n.º 2
0
 public void Returns_False_For_Equal_And_Conflicting_Ranges(StatusCodeRange x, StatusCodeRange y)
 {
     x.IsMoreSpecificThan(y).Should().BeFalse();
 }
Exemplo n.º 3
0
 public void Returns_True_For_More_Specific_Range(StatusCodeRange x, StatusCodeRange y)
 {
     // By just reversing the less specific data, we should get a valid test result.
     y.IsMoreSpecificThan(x).Should().BeTrue();
 }