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
39
40
//! CLI Testing Specialist - Comprehensive testing framework for CLI tools
//!
//! This library provides automated analysis, test generation, and security
//! validation for command-line interface (CLI) tools.
//!
//! ## Features
//!
//! - Automatic CLI analysis and option detection
//! - Comprehensive BATS test suite generation
//! - Security vulnerability testing
//! - Multi-format report generation (Markdown, JSON, HTML, JUnit)
//! - Parallel processing for large CLI tools
//!
//! ## Usage
//!
//! ```no_run
//! use cli_testing_specialist::cli::Cli;
//! use clap::Parser;
//!
//! let cli = Cli::parse();
//! // Process commands...
//! ```
// Public modules
// Re-export commonly used items
pub use ;
pub use ;