10 lines
222 B
Rust
10 lines
222 B
Rust
// Test helpers module
|
|
|
|
pub mod app_builder;
|
|
pub mod fake_tdclient;
|
|
mod fake_tdclient_impl; // TdClientTrait implementation for FakeTdClient
|
|
pub mod snapshot_utils;
|
|
pub mod test_data;
|
|
|
|
pub use fake_tdclient::FakeTdClient;
|