public void ValidateUintToBeGreaterThanValue() { // Given var validator = new NullableUintValidator(42); // When validator.BeGreaterThan(13); // Then Assert.True(true); }
public void ValidateNullableUintToBeGreaterThanValueViolated() { // Given var validator = new NullableUintValidator(null); // When var exception = Assert.Throws <XunitException>(() => validator.BeGreaterThan(42, "that's the bottom line")); // Then Assert.NotNull(exception); var rn = Environment.NewLine; Assert.Equal( $"{rn}validator{rn}is \"\"{rn}but was expected to be greater than \"42\"{rn}because that's the bottom line", exception.UserMessage); }