Exemple #1
0
        public bool IsLessThanOrEqualTest03 <T>(T?value, T?valueBoundUpper)
            where T : struct, IComparable <T>
        {
            bool result = GenericRelationalTestingExtension.IsLessThanOrEqual <T>(value, valueBoundUpper);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsLessThanOrEqualTest03(Nullable`1<!!0>, Nullable`1<!!0>)
        }
Exemple #2
0
        public bool IsLessThanOrEqualTest <T>(T value, T valueBoundUpper)
            where T : IComparable <T>
        {
            bool result = GenericRelationalTestingExtension.IsLessThanOrEqual <T>(value, valueBoundUpper);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsLessThanOrEqualTest(!!0, !!0)
        }
Exemple #3
0
        public bool IsGreaterThanOrEqualTest02 <T>(T?value, T valueBoundLower)
            where T : struct, IComparable <T>
        {
            bool result = GenericRelationalTestingExtension.IsGreaterThanOrEqual <T>(value, valueBoundLower);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsGreaterThanOrEqualTest02(Nullable`1<!!0>, !!0)
        }
Exemple #4
0
        public bool IsBetweenTest04 <T>(
            T?value,
            T valueBoundLower,
            T valueBoundUpper
            )
            where T : struct, IComparable <T>
        {
            bool result
                = GenericRelationalTestingExtension.IsBetween <T>(value, valueBoundLower, valueBoundUpper);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsBetweenTest04(Nullable`1<!!0>, !!0, !!0)
        }
Exemple #5
0
        public bool IsOutsideExclusiveTest07 <T>(
            T?value,
            T?valueBoundLower,
            T?valueBoundUpper
            )
            where T : struct, IComparable <T>
        {
            bool result =
                GenericRelationalTestingExtension.IsOutsideExclusive <T>(value, valueBoundLower, valueBoundUpper);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsOutsideExclusiveTest07(Nullable`1<!!0>, Nullable`1<!!0>, Nullable`1<!!0>)
        }
Exemple #6
0
        public bool IsOutsideExclusiveTest <T>(
            T value,
            T valueBoundLower,
            T valueBoundUpper
            )
            where T : IComparable <T>
        {
            bool result =
                GenericRelationalTestingExtension.IsOutsideExclusive <T>(value, valueBoundLower, valueBoundUpper);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingExtensionTest.IsOutsideExclusiveTest(!!0, !!0, !!0)
        }