ccgo 3.4.1

A high-performance C++ cross-platform build CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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 coverage;
pub mod discovery;
pub mod results;
pub mod benchmark;
pub mod ci;