1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Test optimization and selection tooling for ggen
//!
//! This crate provides test value scoring, 80/20 Pareto selection, parallel execution,
//! and budget enforcement for the ggen test suite. Part of Feature 004: Test Quality Audit
//! and Performance Optimization.
//!
//! # Overview
//!
//! - Test value scoring algorithm (failure frequency + coverage + speed + criticality)
//! - 80/20 Pareto selection (1,178 tests → 200 high-value tests)
//! - Parallel execution with rayon and cargo-nextest
//! - Performance budget enforcement (unit: ≤1s, integration: ≤10s)
//!
//! # Usage
//!
//! ```rust,no_run
//! use ggen_test_opt::OptResult;
//!
//! // Coming soon: Actual implementation
//! ```
// Core modules
// Re-export main types and structs
pub use ;
pub use ;
pub use TestValueScorer;
pub use *;