pub trait Test: Send + Sync {
    fn name(&self) -> &'static str;

    fn ignored(&self) -> bool { ... }
    fn should_fail(&self) -> ShouldFail { ... }
}
Expand description

Represents a Test in Forge

This is meant to be a super trait of the other test interfaces.

Required Methods

Returns the name of the Test

Provided Methods

Indicates if the Test should be ignored

Indicates if the Test should fail

Implementations on Foreign Types

Implementors