mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-03 14:48:17 +00:00
19 lines
652 B
Rust
19 lines
652 B
Rust
//! Integration Tests (IT)
|
|
//!
|
|
//! Integration tests are all contained in this single crate, and organized in modules.
|
|
//! This is to prevent `rustc` to re-link the library crates with each of the integration
|
|
//! tests (one for each *.rs file / test crate under the `tests/` folder).
|
|
//! Performance implication: https://github.com/rust-lang/cargo/pull/5022#issuecomment-364691154
|
|
//!
|
|
//! This is also good for execution performance.
|
|
//! Cargo will run all tests from a single binary in parallel, but
|
|
//! binaries themselves are run sequentally.
|
|
|
|
mod clipboard;
|
|
mod graphics;
|
|
mod input;
|
|
mod pcb;
|
|
mod pdu;
|
|
mod rdcleanpath;
|
|
mod server_name;
|
|
mod session;
|