public void NullableCandidate_ReturnFalse(int?candidate, int?from, int?to)
            {
                var sut = new InclusiveBetweenSpecification <int?>(from, to);

                var result = sut.IsSatisfiedBy(candidate);

                Assert.False(result);
            }
            public void NotInclusiveBetweenCandidate_ReturnFalse <T>(T candidate, T from, T to, IComparer <T> comparer)
            {
                candidate = candidate?.ToString() != "null" ? candidate : default;
                var sut = new InclusiveBetweenSpecification <T>(from, to, comparer);

                var result = sut.IsSatisfiedBy(candidate);

                Assert.False(result);
            }
            public void CorrectNullableCandidate_ReturnExpectedResultObject(int?candidate, int?from, int?to,
                                                                            SpecificationResult expected)
            {
                var sut = new InclusiveBetweenSpecification <int?>(from, to);

                var overall = sut.IsSatisfiedBy(candidate, out var result);

                Assert.True(overall);
                Assert.Equal(expected, result, new SpecificationResultComparer());
            }
            public void NotInclusiveBetweenCandidate_ReturnExpectedResultObject <T>(T candidate, T from, T to,
                                                                                    IComparer <T> comparer, SpecificationResult expected)
            {
                candidate = candidate?.ToString() != "null" ? candidate : default;
                var sut = new InclusiveBetweenSpecification <T>(from, to, comparer);

                var overall = sut.IsSatisfiedBy(candidate, out var result);

                Assert.False(overall);
                Assert.Equal(expected, result, new SpecificationResultComparer(candidate));
            }