Skip to main content

rustapi_testing/
lib.rs

1//! Testing utilities for RustAPI
2//!
3//! r# "Mock Server"
4//!
5//! The `MockServer` allows you to mock HTTP services for integration testing.
6
7pub mod client;
8pub mod expectation;
9pub mod matcher;
10pub mod server;
11
12pub use client::{TestClient, TestRequest, TestResponse};
13pub use expectation::{Expectation, MockResponse, Times};
14pub use matcher::RequestMatcher;
15pub use server::{MockServer, RecordedRequest};