Trait gluesql::tests::Tester[][src]

pub trait Tester<T: 'static + Debug, U: Store<T> + StoreMut<T> + AlterTable> {
    fn new(namespace: &str) -> Self;
fn get_cell(&mut self) -> Rc<RefCell<Option<U>>>; }

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 /src/tests/, not in /tests/.

Required methods

fn new(namespace: &str) -> Self[src]

fn get_cell(&mut self) -> Rc<RefCell<Option<U>>>[src]

Loading content...

Implementors

Loading content...