public void ValidateDoubleToBePositive() { // Given var validator = new DoubleValidator(0); // When validator.BePositive(); // Then Assert.True(true); }
public void ValidateDoubleToBePositiveViolated() { // Given var validator = new DoubleValidator(-42); // When var exception = Assert.Throws <XunitException>(() => validator.BePositive(because: "that's the bottom line")); // Then Assert.NotNull(exception); var rn = Environment.NewLine; Assert.Equal( $"{rn}validator{rn}is \"-42\"{rn}but was expected to have a positive value{rn}because that's the bottom line", exception.UserMessage); }