2021-07-20 15:07:55 +05:30
|
|
|
// suppress all the false alarms by cargo test
|
|
|
|
// https://github.com/rust-lang/rust/issues/46379
|
2020-08-03 15:29:19 +05:30
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2021-08-31 19:58:12 +05:30
|
|
|
pub mod cache;
|
2020-08-07 19:00:00 +05:30
|
|
|
pub mod cache_xml_generator;
|
2021-07-01 19:57:37 +05:30
|
|
|
pub mod common_args;
|
2021-07-20 15:07:55 +05:30
|
|
|
pub mod fixture;
|
2021-07-01 19:57:37 +05:30
|
|
|
pub mod input_arg;
|
|
|
|
pub mod output_option;
|
2021-07-20 15:07:55 +05:30
|
|
|
pub mod process;
|
|
|
|
pub mod program;
|
|
|
|
pub mod target;
|
2020-08-07 19:00:00 +05:30
|
|
|
pub mod test_dir;
|
2021-07-20 15:07:55 +05:30
|
|
|
pub mod thin;
|
2021-05-04 13:40:20 +05:30
|
|
|
pub mod thin_xml_generator;
|