示例#1
0
        public bool IsLessThanOrEqualTest <T>(T value, T valueBoundLower)
            where T : IComparable <T>
        {
            bool result = GenericRelationalTestingUtility.IsLessThanOrEqual <T>(value, valueBoundLower);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingUtilityTest.IsLessThanOrEqualTest(!!0, !!0)
        }
示例#2
0
        public bool IsGreaterThanTest02 <T>(T?value, T valueBoundLower)
            where T : struct, IComparable <T>
        {
            bool result = GenericRelationalTestingUtility.IsGreaterThan <T>(value, valueBoundLower);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingUtilityTest.IsGreaterThanTest02(Nullable`1<!!0>, !!0)
        }