public void ValidateNullableDoubleNotToBeNull() { // Given var validator = new NullableDoubleInverseValidator(0); // When validator.BeNull(); // Then Assert.True(true); }
public void ValidateNullableDoubleNotToBeNullWithReasonViolated() { // Given var validator = new NullableDoubleInverseValidator(null); // When var exception = Assert.Throws <XunitException>(() => validator.BeNull("that's the bottom line")); // Then Assert.NotNull(exception); var rn = Environment.NewLine; Assert.Equal( $"{rn}validator{rn}is null{rn}but was expected not to be null{rn}because that's the bottom line", exception.UserMessage); }