pub trait Tester<T, U> where
    T: Debug,
    U: GStore<T> + GStoreMut<T>, 
{ fn new(namespace: &str) -> Self;
fn get_cell(&mut self) -> Rc<RefCell<Option<U>>>; }
Expand description

If you want to make your custom storage and want to run integrate tests, you should implement this Tester trait.

To see how to use it,

Actual test cases are in test-suite/src/, not in /tests/.

Required methods

Implementors