pub trait Logger {
    fn all(&self) -> Vec<String> ;
    fn print(&self);
}
Available on crate feature testutils only.
Expand description

Test utilities for Logger.

Required Methods§

Returns all debug events that have been logged.

Prints all debug events to stdout.

Implementors§