public void ValidateNullableFloatToNotBeBetweenValues()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

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

            // Then
            Assert.True(true);
        }
        public void ValidateNullableSByteToBePositive()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            validator.BePositive();

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

            // When
            validator.BeOneOf(new float?[] { 10, 39 });

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

            // When
            validator.BeNull();

            // Then
            Assert.True(true);
        }
        public void ValidateNullableFloatToNotBeLessThanBiggerValue()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            validator.BeLessThan(13);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableFloatNotToBeLessThanOrEqualToValue()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            validator.BeLessThanOrEqualTo(13);

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

            // When
            validator.BeGreaterThanOrEqualTo(65);

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

            // When
            validator.BeLessThan(42);

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

            // When
            validator.BeGreaterThan(65);

            // Then
            Assert.True(true);
        }
        public void ValidateNullableFloatToBeApproximatelyValue()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            validator.BeApproximately(42f, 0.1f);

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

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

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

            // 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 \"0\"{rn}but was expected not to have a positive value{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateNullableFloatNotToBeOneOfViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeOneOf(new float?[] { null, 42 }, because: "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"\"{rn}but was expected not to be one of the following values: \"\", \"42\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateNullableFloatNotToBeNullWithReasonViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(null);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeNull("that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is null{rn}but was expected not to be null{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateFloatToNotBeGreaterThanValueViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeGreaterThan(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 not to be greater than \"13\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateFloatToBeBetweenValuesMinimumAndMaximumViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(42);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeBetween(13, 100, "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 between \"13\" and \"100\"{rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateFloatToBeApproximatelyValueViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(42.12345f);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeApproximately(42.12f, 0.01f, "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"42,12345\"{rn}but was expected to be approximately \"42,12\" (+/- 0,01){rn}because that's the bottom line",
                exception.UserMessage);
        }
        public void ValidateFloatNotToBeLessThanOrEqualToValueViolated()
        {
            // Given
            var validator = new NullableFloatInverseValidator(42);

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