pub trait BasicTest {
    fn run(
        &self,
        config: &TestConfig,
        builder: &ChainBuilder
    ) -> Result<(), Error>; }
Expand description

A basic test has the minimal test setup that is essential for almost all tests.

The test runner is given a TestConfig and ChainBuilder, which provides the essential customization for how the tests should be run.

Required Methods

Test runner

Implementors