Make extra_infos_server but not other simulation code available to tests
This commit is contained in:
parent
455452d64b
commit
606156c8b0
|
@ -20,13 +20,18 @@ pub mod negative_report;
|
||||||
pub mod positive_report;
|
pub mod positive_report;
|
||||||
pub mod request_handler;
|
pub mod request_handler;
|
||||||
|
|
||||||
#[cfg(any(test, feature = "simulation"))]
|
#[cfg(feature = "simulation")]
|
||||||
pub mod simulation {
|
pub mod simulation {
|
||||||
pub mod extra_infos_server;
|
pub mod extra_infos_server;
|
||||||
pub mod state;
|
pub mod state;
|
||||||
pub mod user;
|
pub mod user;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
pub mod simulation {
|
||||||
|
pub mod extra_infos_server;
|
||||||
|
}
|
||||||
|
|
||||||
use analysis::Analyzer;
|
use analysis::Analyzer;
|
||||||
use extra_info::*;
|
use extra_info::*;
|
||||||
use negative_report::*;
|
use negative_report::*;
|
||||||
|
|
Loading…
Reference in New Issue