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
it would be nice to have soft assertions.
The API could look like this :
let softly = SoftAssertions::new(); softly.assert_that(mansion.guests()).as("Living guest").is_equal_to(7); softly.assert_that(mansion.kitchen()).as("Kitchen").is_equal_to("clean"); softly.asser_that(mansion.library()).as("Library").is_equal_to("clean"); softly.assert_all();
resulting in the following :
1) [Living Guests] expected:<[7]> but was:<[6]> 2) [Library] expected:<"clean"> but was:<"messy"> 3) [Kitchen] expected:<"clean"> but was:<"dirty">
The text was updated successfully, but these errors were encountered:
How does this compare to https://github.com/google/googletest-rust ?
Sorry, something went wrong.
No branches or pull requests
it would be nice to have soft assertions.
The API could look like this :
resulting in the following :
The text was updated successfully, but these errors were encountered: