> For the complete documentation index, see [llms.txt](https://rust-book.dewaka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rust-book.dewaka.com/testing.md).

# Testing

## How to get output from tests with cargo test?

Provide `nocapture` option as an argument to `cargo test`, as follows.

```
cargo test -- --nocapture
```
