pub trait HasOverrides {
    type Overrides;

    fn get_overrides(&self) -> &Self::Overrides;
}
Expand description

Used for test case wrappers to indicate that the inner test case implements override traits for overriding certain behavior of the test.

Test writers do not need to be aware of this trait, as this is automatically handled by TestOverrides.

Required Associated Types

The inner type that implements the override traits.

Required Methods

Get the reference to the inner override type.

Implementors