From 58c11d742fcba9dde46c5a3bbecda8df88d00165 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 20 Nov 2021 12:09:08 +0100 Subject: [PATCH] Add unit tests notes --- Rust/Unit Tests.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Rust/Unit Tests.md diff --git a/Rust/Unit Tests.md b/Rust/Unit Tests.md new file mode 100644 index 0000000..fa68ccd --- /dev/null +++ b/Rust/Unit Tests.md @@ -0,0 +1,60 @@ +# Unit Tests + +## Test Functions + +```rs +// module code here + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_func() { + //ARRANGE + + // ACT + + // ASSERT + assert!(bool, "optional custom error message"); + assert_eq!(expected, actual, "optional custom error message"); + assert_ne!(expected, actual, "optional custom error message"); + } + + #[test] + #[should_panic("optional custom error message")] + fn test_func() {/* ... */} + + #[test] + #[ignore] + fn test_func() {/* ... */} +} +``` + +## Controlling How Tests Are Run + +```sh +cargo test -- --test-threads= # run tests in parallel (1 no parallelism) +cargo test -- --show-output # show content printed in stdout in each test +cargo test # run only a specific test +cargo test # run only specific tests +cargo test -- --ignored # run tests annotated with #[ignore] +cargo test --test # run all integration tests +``` + +## Test Organization + +Unit Tests: + +- Inside the same module as the tested code +- annotated with `#[cfg(test)]` +- can test private code by default +- import tested code with `super::*` +- compiled only with `cargo test` + +Integration tests: + +- inside top level `tests` folder +- need to import tested code by crate name +- place util functions in a `mod.rs` to avoid testing them, e.g: `tests/common/mod.rs` +- compiled only with `cargo test`