test-tube-prov 0.5.0

library for building smart contract integration testing environments for Provenance Blockchain in Rust
Documentation
1
2
3
4
5
6
7
8
use crate::runner::Runner;

#[macro_use]
pub mod macros;

pub trait Module<'a, R: Runner<'a>> {
    fn new(runner: &'a R) -> Self;
}