public void ValidateSByteToBePositive() { // Given var validator = new NullableSbyteValidator(0); // When validator.BePositive(); // Then Assert.True(true); }
public void ValidateSByteToBePositiveViolated() { // Given var validator = new NullableSbyteValidator(-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); }