public void ValidateNullableLongToNotBeGreaterThanBiggerValue() { // Given var validator = new NullableLongInverseValidator(null); // When validator.BeGreaterThan(65); // Then Assert.True(true); }
public void ValidateLongToBeGreaterThanEqualValue() { // Given var validator = new NullableLongInverseValidator(42); // When validator.BeGreaterThan(42); // Then Assert.True(true); }
public void ValidateLongToNotBeGreaterThanValueViolated() { // Given var validator = new NullableLongInverseValidator(42); // When var exception = Assert.Throws <XunitException>(() => validator.BeGreaterThan(13, "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 \"13\"{rn}because that's the bottom line", exception.UserMessage); }