Enum modelator::TestError [−][src]
pub enum TestError {
Modelator(Error),
UnhandledTest {
test: String,
system: String,
},
FailedTest {
message: String,
location: String,
test: String,
system: String,
},
}Expand description
Set of possible errors that can occur when running a test using modelator.
Variants
Modelator(Error)
Tuple Fields
0: ErrorA modelator Error.
UnhandledTest
A error that occurs when a test fails.
FailedTest
Fields
message: StringFailure message.
location: StringFailure location.
test: StringTest content
system: StringSystem under test
A error that occurs when a test fails.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TestError
impl UnwindSafe for TestError
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
