brain/src/dev/rust/testing.md
Wilfried OLLIVIER b8cf2805d8 Fix: typo
2020-01-11 17:41:55 +01:00

230 B

Testing

Cargo test and println!

To see stdout when using cargo run (kudos CobaltVelvet)

cargo test -- --nocapture

Run all the tests, even if one of them fail

cargo test -- --no-fail-fast