llm-optimizer-api-tests 0.1.1

Comprehensive API testing suite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Comprehensive API Testing Suite
//!
//! This crate provides extensive testing coverage for REST APIs, gRPC APIs, and API Gateway
//! with security validation, performance benchmarks, and integration tests.

pub mod common;
pub mod fixtures;
pub mod helpers;

// Re-export commonly used testing utilities
pub use common::*;
pub use fixtures::*;
pub use helpers::*;

/// Test result type
pub type TestResult<T = ()> = Result<T, Box<dyn std::error::Error + Send + Sync>>;