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