tasker-orchestration 0.1.4

Orchestration system for tasker workflow coordination
//! # Web API Integration Tests
//!
//! Comprehensive integration tests for the web API including:
//! - Unauthenticated endpoint testing
//! - JWT-based authentication testing
//! - TLS/HTTPS testing with self-signed certificates
//! - Database pool resource coordination validation
//! - Health monitoring integration testing

pub mod auth;
pub mod auth_test_helpers;
pub mod authenticated_tests;
pub mod resource_coordination_tests;
pub mod test_analytics_endpoints;
pub mod test_dlq_endpoints;
pub mod test_infrastructure;
pub mod test_openapi_documentation;
pub mod tls_tests;
pub mod unauthenticated_tests;

/// Re-export common test utilities
pub use test_infrastructure::*;