Struct parables_testing::reporter::StdoutReporter [−][src]
pub struct StdoutReporter { /* fields omitted */ }A components that prints test results.
Methods
impl StdoutReporter[src]
impl StdoutReporterpub fn new() -> Result<Self, Error>[src]
pub fn new() -> Result<Self, Error>pub fn report_skipped(self) -> Self[src]
pub fn report_skipped(self) -> SelfConfigure reporter to report skipped.
Trait Implementations
impl<'a> Reporter<'a> for StdoutReporter[src]
impl<'a> Reporter<'a> for StdoutReporterfn supports_animation(&self) -> Result<bool, Error>[src]
fn supports_animation(&self) -> Result<bool, Error>Check if reporter supports animation.
fn animate(&self) -> Result<(), Error>[src]
fn animate(&self) -> Result<(), Error>Animate the reporter.
fn end(&self) -> Result<(), Error>[src]
fn end(&self) -> Result<(), Error>End any in-progress animations.
fn report_started(&self, index: usize, name: &str) -> Result<(), Error>[src]
fn report_started(&self, index: usize, name: &str) -> Result<(), Error>Report that we've started running a test.
fn report(&self, index: usize, result: TestResult) -> Result<(), Error>[src]
fn report(&self, index: usize, result: TestResult) -> Result<(), Error>Report a single result.
fn report_skipped(&self, test: Test) -> Result<(), Error>[src]
fn report_skipped(&self, test: Test) -> Result<(), Error>Report that a number of tests have been skipped.
fn close(&self) -> Result<(), Error>[src]
fn close(&self) -> Result<(), Error>Close the reporter.
Auto Trait Implementations
impl Send for StdoutReporter
impl Send for StdoutReporterimpl Sync for StdoutReporter
impl Sync for StdoutReporter