// A pub module with all the mocks, dummies and assorted helpers for testing
// A mock UI to verify that printing commands send the right data to UI
pub use mock_ui;
// A fake IO to verify that IO commands interact correctly with IO
pub use fake_io;
// A dummy IO implementation that does nothing, for tests that don't use IO
pub use dummy_io;
// A dummy UI that panics on everything except lock and unlock, verifies that
// tests that shouldn't cause a print don't.
pub use dummy_ui;
// All test fixtures
use inner_fixture;