Returns true if the test case represents a failure (anything other than [`TestCaseResult::Success`]).
(&self)
| 258 | /// Returns true if the test case represents a failure |
| 259 | /// (anything other than [`TestCaseResult::Success`]). |
| 260 | fn is_failure(&self) -> bool { |
| 261 | !matches!(self, TestCaseResult::Success) |
| 262 | } |
| 263 | |
| 264 | /// Formats a detailed error message for the test case into a string. |
| 265 | fn format_error(&self, name: &str) -> String { |
no outgoing calls
no test coverage detected