veilid/veilid-core/src/tests/mod.rs

18 lines
486 B
Rust
Raw Normal View History

2022-12-01 02:32:41 +00:00
#[cfg(all(target_os = "android", feature = "veilid_core_android_tests"))]
2022-11-30 03:51:51 +00:00
mod android;
2021-11-22 16:28:30 +00:00
pub mod common;
2022-12-01 02:32:41 +00:00
#[cfg(all(target_os = "ios", feature = "veilid_core_ios_tests"))]
2022-11-30 03:51:51 +00:00
mod ios;
2021-11-22 16:28:30 +00:00
#[cfg(not(target_arch = "wasm32"))]
mod native;
2022-11-30 03:51:51 +00:00
#[allow(unused_imports)]
use super::*;
pub use common::*;
pub use crypto::tests::*;
pub use network_manager::tests::*;
2023-05-29 19:24:57 +00:00
pub use routing_table::tests::test_serialize as test_routing_table_serialize;
pub use table_store::tests::*;
pub use veilid_api::tests::*;