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