//! Testing utilities for Toxi web applications
//!
//! This crate provides test helpers, mocks, and utilities for testing
//! Toxi web applications.
//!
//! # Examples
//!
//! ```no_run
//! use toxi_testing::*;
//!
//! #[tokio::test]
//! async fn test_endpoint() {
//! let request = TestRequest::get("/api/users").build();
//! // Test your handlers
//! }
//! ```
/// Test request builder module — provides [`TestRequest`] and [`TestRequestError`].
/// Test response wrapper module — provides [`TestResponse`].
/// Test server module — provides [`TestServer`] and [`test_router`].
/// Re-export [`TestRequest`] and [`TestRequestError`] at crate root.
pub use ;
/// Re-export [`TestResponse`] at crate root.
pub use TestResponse;
/// Re-export [`TestServer`] and [`test_router`] at crate root.
pub use ;
/// Re-export tokio::test for convenience
pub use test;