public void ValidateSbyteToBeGreaterThanValue() { // Given var validator = new NullableSbyteValidator(42); // When validator.BeGreaterThan(13); // Then Assert.True(true); }
public void ValidateNullableSbyteToBeGreaterThanValueViolated() { // Given var validator = new NullableSbyteValidator(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); }