Ejemplo n.º 1
0
        public bool IsLessThanTest03 <T>(T?value, T?valueBoundLower)
            where T : struct, IComparable <T>
        {
            bool result = GenericRelationalTestingUtility.IsLessThan <T>(value, valueBoundLower);

            return(result);
            // TODO: add assertions to method GenericRelationalTestingUtilityTest.IsLessThanTest03(Nullable`1<!!0>, Nullable`1<!!0>)
        }
Ejemplo n.º 2
0
        public bool IsLessThanTest <T>(T value, T valueBoundLower)
            where T : IComparable <T>
        {
            bool result = GenericRelationalTestingUtility.IsLessThan <T>(value, valueBoundLower);

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