pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tests for simple service
//! Extracted to separate file for file health compliance (CB-040)
//! Split into multiple parts for CB-040 compliance (<500 lines each)

use super::*;

#[path = "simple_service_tests_part1.rs"]
mod simple_service_tests_part1;

#[path = "simple_service_tests_part2.rs"]
mod simple_service_tests_part2;

#[path = "simple_service_tests_part3.rs"]
mod simple_service_tests_part3;

#[path = "simple_service_tests_part4.rs"]
mod simple_service_tests_part4;