public void ValidateNullableIntNotToBeGreaterThanOrEqualToValue() { // Given var validator = new NullableIntInverseValidator(null); // When validator.BeGreaterThanOrEqualTo(65); // Then Assert.True(true); }
public void ValidateIntNotToBeGreaterThanOrEqualToValueViolated() { // Given var validator = new NullableIntInverseValidator(42); // When var exception = Assert.Throws <XunitException>(() => validator.BeGreaterThanOrEqualTo(42, "that's the bottom line")); // Then Assert.NotNull(exception); var rn = Environment.NewLine; Assert.Equal( $"{rn}validator{rn}is \"42\"{rn}but was expected not to be greater than or equal to \"42\"{rn}because that's the bottom line", exception.UserMessage); }