[][src]Struct juxr::reports::TestCase

pub struct TestCase<'a> { /* fields omitted */ }

Represents the execution of a single test case

Implementations

impl<'a> TestCase<'a>[src]

pub fn new(
    name: &str,
    class: &str,
    result: &TestResult<'a>,
    time: Duration
) -> TestCase<'a>
[src]

pub fn new_with_output(
    name: &str,
    class: &str,
    result: &TestResult<'a>,
    stdout: Cow<'a, str>,
    stderr: Cow<'a, str>,
    time: Duration
) -> TestCase<'a>
[src]

pub fn name(&'a self) -> &'a str[src]

the name of the test case

pub fn class(&'a self) -> &'a str[src]

the test group name

pub fn stdout(&'a self) -> &'a str[src]

the test stdout

pub fn stderr(&'a self) -> &'a str[src]

the test stderr

pub fn result(&'a self) -> &'a TestResult<'a>[src]

the test result

pub fn time(&'a self) -> Duration[src]

the test duration

pub fn write<W: Write>(&self, writer: &mut EventWriter<W>) -> Result<()>[src]

Trait Implementations

impl<'a> Clone for TestCase<'a>[src]

impl<'a> Debug for TestCase<'a>[src]

impl<'a> PartialEq<TestCase<'a>> for TestCase<'a>[src]

impl<'a> StructuralPartialEq for TestCase<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TestCase<'a>[src]

impl<'a> Send for TestCase<'a>[src]

impl<'a> Sync for TestCase<'a>[src]

impl<'a> Unpin for TestCase<'a>[src]

impl<'a> UnwindSafe for TestCase<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,