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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Tests extracted to tests.rs (PMAT-802)
#[cfg(test)]
#[path = "tests.rs"]
mod cli_tests;
// Additional inference coverage tests (Part 02)
#[cfg(test)]
#[path = "tests_temperature_nan.rs"]
mod cli_tests_part_02;
// CLI helper functions tests (Part 03)
#[cfg(test)]
#[path = "tests_03.rs"]
mod cli_tests_part_03;
// Coverage bridge tests (Part 04 - T-COV-95 B1)
#[cfg(test)]
#[path = "tests_04.rs"]
mod cli_tests_part_04;
// Deep CLI coverage tests (Part 05 - T-COV-95 Deep CLI)
#[cfg(test)]
#[path = "tests_05.rs"]
mod cli_tests_part_05;
// T-COV-95 Deep Coverage Bridge (Part 06 - handlers.rs: pull, push, list, serve, trace)
#[cfg(test)]
#[path = "tests_handle_pull.rs"]
mod cli_tests_part_06;
// T-COV-95 Deep Coverage Bridge (Part 07 - mod.rs: bench, viz, load, format, parse)
#[cfg(test)]
#[path = "tests_format_size.rs"]
mod cli_tests_format_size;
// T-COV-95 Extended Coverage (Part 08 - mod.rs: format_size, is_local_file_path, validate_suite_name, display_model_info)
#[cfg(test)]
#[path = "tests_format_size_02.rs"]
mod cli_tests_part_08;
// T-COV-95 Synthetic Falsification (Part 09 - inference.rs via Pygmy GGUF models)
#[cfg(test)]
#[path = "tests_pygmy_inference.rs"]
mod cli_tests_pygmy_inference;
// T-COV-95 CLI Inference Additional Coverage
#[cfg(test)]
#[path = "inference_tests_apr.rs"]
mod cli_inference_tests_part_02;
// T-COV-95 Active Pygmy CLI Inference (In-Memory)
#[cfg(test)]
#[path = "inference_tests_gguf_pygmy.rs"]
mod cli_inference_tests_part_03;
// T-COV-95 Artifact Falsification (Real Files, Real CLI)
#[cfg(test)]
#[path = "inference_tests_04.rs"]
mod cli_inference_tests_part_04;
// T-COV-95 Poisoned Pygmies: CLI Graceful Degradation Tests
#[cfg(test)]
#[path = "tests_10.rs"]
mod cli_tests_part_10;