public static IVerifier IsNotEqual <T>(this IVerifier target, T value1, T value2, Exception exception) where T : IEquatable <T> { return(target.IsNotEqual(value1, value2, () => { throw exception; })); }
public static IVerifier IsNotEqual(this IVerifier target, object value1, object value2, Exception exception) { return(target.IsNotEqual(value1, value2, () => { throw exception; })); }