std.test.Reporter
ReporterA type used for reporting test progress.
Required methods
failed
Show source codeHide source code
fn pub mut failed(test: Test)fn pub mut failed(test: Test)Reports a test that failed.
finished
Show source codeHide source code
fn pub move finished(duration: Duration, seed: Int) -> Boolfn pub move finished(duration: Duration, seed: Int) -> BoolPresents a summary of the test suite upon completion.
The duration argument is set to the total execution time.
The seed argument is the seed used to sort the tests in a random order.
If any tests failed, this method must return false.
passed
Show source codeHide source code
fn pub mut passed(test: Test)fn pub mut passed(test: Test)Reports a test that passed.
Implementations
Plain
impl Reporter for Plain