IronRDP/crates/ironrdp-testsuite-core/tests/main.rs
2023-08-15 13:53:07 -04:00

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;