Exemplo n.º 1
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>)
        }
Exemplo n.º 2
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)
        }