Expand description
Testing utilities for Oxidite web applications
This crate provides test helpers, mocks, and utilities for testing Oxidite web applications.
§Examples
use oxidite_testing::*;
#[tokio::test]
async fn test_endpoint() {
let request = TestRequest::get("/api/users").build();
// Test your handlers
}Re-exports§
pub use request::TestRequest;pub use response::TestResponse;pub use server::TestServer;pub use server::test_router;