Trait Summary

Source
pub trait Summary {
    // Provided method
    fn test_failure(&mut self, _status: &dyn TestStatus, _errors: &Vec<Error>) { ... }
}
Expand description

Report a summary at the end of a test run.

Provided Methods§

Source

fn test_failure(&mut self, _status: &dyn TestStatus, _errors: &Vec<Error>)

A test has finished, handle the result.

Implementations on Foreign Types§

Source§

impl Summary for (Box<dyn Summary>, Box<dyn Summary>)

Source§

fn test_failure(&mut self, status: &dyn TestStatus, errors: &Vec<Error>)

Source§

impl Summary for ()

Report no summary

Implementors§