Add rust testing

This commit is contained in:
Wilfried OLLIVIER 2019-07-07 21:23:59 +02:00
parent 388130ca6d
commit 08f42369f1
2 changed files with 10 additions and 0 deletions

View File

@ -8,6 +8,7 @@
- [Testing](./dev/golang/testing.md)
- [Rust](./dev/rust/main.md)
- [serde](./dev/rust/serde.md)
- [Testing](./dev/rust/testing.md)
- [Web](./dev/web/main.md)
- [front](./dev/web/front/main.md)
- [babel and babel-preset-stage-2](./dev/web/front/babel-preset-stage-2.md)

9
src/dev/rust/testing.md Normal file
View File

@ -0,0 +1,9 @@
# Testing
## `Cargo test` and `println!`
To see stdout when using cargo run (kudos CobaltVelvet)
```shell
cargo run -- --nocapture
```