Improve testing framework
It might be worth having a google to see how others have approach the "setup suite" issue. When I looked it seems like there are crates out there that can help a bit.
FWIW I think integration tests should also remain in the tests directory, and unit tests alongside the code. Another thing to consider is whether we can add some unit tests for trickier cases to repro, see the mocking approach in https://github.com/couchbaselabs/couchbase-rs/pull/155. Out of scope for this PR though.
FWIW I think integration tests should also remain in the tests directory, and unit tests alongside the code. Another thing to consider is whether we can add some unit tests for trickier cases to repro, see the mocking approach in couchbaselabs/couchbase-rs#155. Out of scope for this PR though.
I agree, have moved everything back.