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

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

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