public bool IsLessThanOrEqualTest03 <T>(T?value, T?valueBoundLower) where T : struct, IComparable <T> { bool result = GenericRelationalTestingUtility.IsLessThanOrEqual <T>(value, valueBoundLower); return(result); // TODO: add assertions to method GenericRelationalTestingUtilityTest.IsLessThanOrEqualTest03(Nullable`1<!!0>, Nullable`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) }