https://doc.rust-lang.org/cargo/commands/cargo-test.html テストを実行する[[Cargo]]のコマンド。 ## よく使うオプション `cargo test`コマンドは`--`の位置に注意する。 ### `--`より前 | オプション | 意味 | | ----------------- | -------------------- | | `--no-fail-fast` | 失敗してもテスト続行 | ### `--`より後 | オプション | 意味 | | ----------------- | -------------------- | | `--test-threads` | スレッド数 | | `--show-output` | 標準出力を見せる |