Trait ibc_test_framework::framework::base::BasicTest
source · pub trait BasicTest {
// Required method
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§
sourcefn run(&self, config: &TestConfig, builder: &ChainBuilder) -> Result<(), Error>
fn run(&self, config: &TestConfig, builder: &ChainBuilder) -> Result<(), Error>
Test runner