Type Alias ui_test::TestResult

source ·
pub type TestResult = Result<TestOk, Errored>;
Expand description

The possible results a single test can have.

Aliased Type§

enum TestResult {
    Ok(TestOk),
    Err(Errored),
}

Variants§

§1.0.0

Ok(TestOk)

Contains the success value

§1.0.0

Err(Errored)

Contains the error value