Documentation
// Copyright (c) 2026, Salesforce, Inc.,
// All rights reserved.
// For full license text, see the LICENSE.txt file

//! PDK Integration Test Framework predefined services.
//!
//! This module provides predefined services for integration testing scenarios.
//! It includes mock services, test utilities, and Flex Gateway configurations
//! commonly used in PDK integration tests.
//!
//! ## Available services
//!
//! - [`flex`]: Flex Gateway service configurations and utilities
//! - [`httpmock`]: HTTP mock service for API testing
//! - [`httpbin`]: HTTP testing service with various endpoints
//! - [`grpcbin`]: gRPC testing service for protocol testing
//! - [`gripmock`]: gRPC mock service for service mocking
//!

pub mod flex;
pub mod gripmock;
pub mod grpcbin;
pub mod httpbin;
pub mod httpmock;