public void ValidateByteNotToBeOneOfExpectedValues() { // Given var validator = new ByteInverseValidator(42); // When validator.BeOneOf(new byte[] { 10, 39 }); // Then Assert.True(true); }
public void ValidateByteNotToBeOneOfViolated() { // Given var validator = new ByteInverseValidator(42); // When var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new byte[] { 13, 42 }, 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 not to be one of the following values: \"13\", \"42\"{rn}because that's the bottom line", exception.UserMessage); }