public void ValidateSByteToBeOneOfExpectedValues()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            validator.BeOneOf(new sbyte[] { 10, 42 });

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBeBetweenValues()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            validator.BeBetween(13, 65);

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBePositive()
        {
            // Given
            var validator = new SbyteValidator(0);

            // When
            validator.BePositive();

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBeLessThanOrEqualToEqualValue()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            validator.BeLessThanOrEqualTo(42);

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBeValue()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            validator.Be(42);

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBeGreaterThanOrEqualToSmallerValue()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            validator.BeGreaterThanOrEqualTo(13);

            // Then
            Assert.True(true);
        }
        public void ValidateSByteToBeBetweenValuesMaximumViolated()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(13, 39, "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 be between \"13\" and \"39\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateSByteToBePositiveViolated()
        {
            // Given
            var validator = new SbyteValidator(-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);
        }
        public void ValidateSByteToBeOneOfViolated()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new sbyte[] { 13, 39 }, 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 be one of the following values: \"13\", \"39\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateSByteToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new SbyteValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeLessThanOrEqualTo(13, "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 be less than or equal to \"13\"{rn}because that's the bottom line",
                exception.UserMessage);
        }