pub trait BinaryChainTest {
    fn run<ChainA: ChainHandle, ChainB: ChainHandle>(
        &self,
        config: &TestConfig,
        relayer: RelayerDriver,
        chains: ConnectedChains<ChainA, ChainB>
    ) -> Result<(), Error>; }
Expand description

This trait is implemented for test cases that need to have two full nodes running together with the relayer setup with chain handles and foreign clients.

Test writers can use this to implement test cases that only need the chains and relayers setup without the connection or channel handshake.

Required Methods

Test runner

Implementors