ccgo 3.7.0

A high-performance C++ cross-platform build CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Testing framework enhancements
//!
//! This module provides advanced testing features including:
//! - Test discovery and listing
//! - Code coverage reporting
//! - Test result aggregation
//! - Benchmark result comparison
//! - CI service integration

pub mod benchmark;
pub mod ci;
pub mod coverage;
pub mod discovery;
pub mod results;