#![allow(
// These pedantic lints are useful in production code but produce a lot
// of noise in test fixtures, where short scripts and explicit byte
// literals are the norm.
clippy::needless_pass_by_value,
clippy::similar_names,
clippy::too_many_lines,
clippy::unreadable_literal,
clippy::missing_panics_doc
)]
mod bytes_tests;
mod stream_tests;
mod oauthbearer_tests;
mod pipelining_tests;
mod client_tests;
mod error_tests;
mod harness;
mod policy_tests;
mod audit_tests;
mod protocol_tests;
mod session_tests;
#[cfg(feature = "smtputf8")]
mod smtputf8_tests;
#[cfg(feature = "mail-builder")]
mod mail_builder_tests;
#[cfg(feature = "scram-sha-256")]
mod scram_tests;