예제 #1
0
        public void ValidateSByteNotToBeNegative()
        {
            // Given
            var validator = new SbyteInverseValidator(0);

            // When
            validator.BeNegative();

            // Then
            Assert.True(true);
        }
예제 #2
0
        public void ValidateSByteNotToBeNegativeViolated()
        {
            // Given
            var validator = new SbyteInverseValidator(-42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeNegative(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 have a negative value{rn}because that's the bottom line",
                exception.UserMessage);
        }