cfgmatic-source 5.0.1

Configuration sources (file, env, memory) for cfgmatic framework
Documentation
//! Tests for cfgmatic-source crate.
//!
//! This module contains all tests organized by layer:
//!
//! - `domain` - Domain layer tests (entities, traits)
//! - `application` - Application layer tests (services)
//! - `infrastructure` - Infrastructure layer tests (implementations)
//! - `integration` - End-to-end integration tests
//!
//! # Test Organization
//!
//! Tests follow the same layered architecture as the source code:
//!
//! ```text
//! tests/
//! ├── mod.rs                    # Root test module
//! ├── domain/                   # Domain layer tests
//! │   ├── mod.rs
//! │   ├── source_tests.rs
//! │   ├── format_tests.rs
//! │   └── content_tests.rs
//! ├── application/              # Application layer tests
//! │   ├── mod.rs
//! │   └── loader_tests.rs
//! ├── infrastructure/           # Infrastructure layer tests
//! │   ├── mod.rs
//! │   ├── file_source_tests.rs
//! │   ├── env_source_tests.rs
//! │   ├── memory_source_tests.rs
//! │   └── composite_source_tests.rs
//! └── integration/              # End-to-end tests
//!     ├── mod.rs
//!     └── workflow_tests.rs
//! ```
//!
//! # Running Tests
//!
//! ```bash
//! # Run all tests
//! cargo test
//!
//! # Run specific layer tests
//! cargo test --test domain
//! cargo test --test infrastructure
//!
//! # Run with features
//! cargo test --features "file env toml json"
//! ```

pub mod application;
pub mod domain;
pub mod infrastructure;
pub mod integration;