pmat 3.11.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
//! Integration and Acceptance Tests for PMAT Server
//!
//! This module provides comprehensive testing for all PMAT interfaces:
//! - CLI acceptance tests (100% command coverage)
//! - MCP acceptance tests (protocol compliance)
//! - HTTP API acceptance tests (REST compliance)

#[cfg(not(feature = "skip-slow-tests"))]
pub mod cli_acceptance;
#[cfg(not(feature = "skip-slow-tests"))]
pub mod http_acceptance;
#[cfg(not(feature = "skip-slow-tests"))]
pub mod mcp_acceptance;