We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConsistSequentiallyOf
Add methods to IObjectVerificationProviderExtensions:
IObjectVerificationProviderExtensions
public static TOwner ConsistSequentiallyOf<TItem, TOwner>( this IObjectVerificationProvider<IEnumerable<TItem>, TOwner> verifier, params Expression<Func<TItem, bool>>[] predicateExpressions); public static TOwner ConsistSequentiallyOf<TObject, TOwner>( this IObjectVerificationProvider<IEnumerable<IObjectProvider<TObject>>, TOwner> verifier, params Expression<Func<TObject, bool>>[] predicateExpressions);
new[] { 1, 2 }.ToSutSubject() .Should.ConsistSequentiallyOf(x => x == 1, x => x == 2);
The text was updated successfully, but these errors were encountered:
#694 Add ConsistSequentiallyOf verification extension methods
d8b794f
YevgeniyShunevych
No branches or pull requests
Add methods to
IObjectVerificationProviderExtensions
:Usage
The text was updated successfully, but these errors were encountered: