public static IVerifier IsNotCount <T>(this IVerifier target, IEnumerable <T> values, int count, Exception exception)
 {
     return(target.IsNotCount(values, count, () => { throw exception; }));
 }