mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Add unit tests notes
This commit is contained in:
parent
fce76bf7eb
commit
58c11d742f
1 changed files with 60 additions and 0 deletions
60
Rust/Unit Tests.md
Normal file
60
Rust/Unit Tests.md
Normal file
|
@ -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=<number> # run tests in parallel (1 no parallelism)
|
||||
cargo test -- --show-output # show content printed in stdout in each test
|
||||
cargo test <test_name> # run only a specific test
|
||||
cargo test <partial_test_name> # 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`
|
Loading…
Add table
Reference in a new issue