Skip to main content

llm_optimizer_api_tests/
lib.rs

1//! Comprehensive API Testing Suite
2//!
3//! This crate provides extensive testing coverage for REST APIs, gRPC APIs, and API Gateway
4//! with security validation, performance benchmarks, and integration tests.
5
6pub mod common;
7pub mod fixtures;
8pub mod helpers;
9
10// Re-export commonly used testing utilities
11pub use common::*;
12pub use fixtures::*;
13pub use helpers::*;
14
15/// Test result type
16pub type TestResult<T = ()> = Result<T, Box<dyn std::error::Error + Send + Sync>>;