pdk_test/services/mod.rs
1// Copyright (c) 2026, Salesforce, Inc.,
2// All rights reserved.
3// For full license text, see the LICENSE.txt file
4
5//! PDK Integration Test Framework predefined services.
6//!
7//! This module provides predefined services for integration testing scenarios.
8//! It includes mock services, test utilities, and Flex Gateway configurations
9//! commonly used in PDK integration tests.
10//!
11//! ## Available services
12//!
13//! - [`flex`]: Flex Gateway service configurations and utilities
14//! - [`httpmock`]: HTTP mock service for API testing
15//! - [`httpbin`]: HTTP testing service with various endpoints
16//! - [`grpcbin`]: gRPC testing service for protocol testing
17//! - [`gripmock`]: gRPC mock service for service mocking
18//!
19
20pub mod flex;
21pub mod gripmock;
22pub mod grpcbin;
23pub mod httpbin;
24pub mod httpmock;