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
After implementing Testably/Testably.Abstractions#476, add checks to validate statistical information.
Examples:
mockFileSystem.Statistics.File.Should() .HaveCalled(f => f.WriteAllText) .WithFirstParameter("path/to/file") .ExactlyOnce();
mockFileSystem.Statistics.Path.Should() .HaveAccessed(p => p.DirectorySeparatorChar) .Never();
The text was updated successfully, but these errors were encountered:
feat: add statistic assertions (#104)
ff11899
Implements #101
No branches or pull requests
After implementing Testably/Testably.Abstractions#476, add checks to validate statistical information.
Examples:
The text was updated successfully, but these errors were encountered: