Trait parables_testing::test_runner::TestEntry[][src]

pub trait TestEntry: Send {
    fn run(&self) -> Result<(), Error>;
}

The entrypoint of a test.

Required Methods

Implementations on Foreign Types

impl TestEntry for ()
[src]

An empty test.

Implementors