axum_test_helpers/lib.rs
1#![allow(clippy::disallowed_names)]
2
3use axum::{extract::Request, response::Response, serve};
4
5mod test_client;
6pub use self::test_client::*;
7
8pub mod tracing_helpers;
9
10pub fn assert_send<T: Send>() {}
11pub fn assert_sync<T: Sync>() {}
12
13#[allow(dead_code)]
14pub struct NotSendSync(*const ());