pub trait TestReport { // Required method fn report(self) -> Outcome; }
Type which may be used as a test return type.
Report any errors to tracing, then returns either true for a success, or false for a failure.
tracing
true
false