Command Line Interface (CLI) for stress testing in competitive programming
If you already have Rust on your system:
sh
cargo install --version quicktest
If you don't have rust installed on your system, the following command will install Rust and the CLI at once:
Shell (Linux, Mac):
sh
curl https://sh.rustup.rs -sSf | sh && cargo install --version quicktest
sh
quicktest --help
``` quicktest 0.2.0 CLI for stress testing in competitive programming contest
USAGE:
quicktest
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS:
cmp Check the correctness of the
sh
quicktest tle --help
```shell quicktest-tle 0.2.0 Check TLE
USAGE:
quicktest tle [FLAGS] [OPTIONS] --gen-file
FLAGS: -h, --help Prints help information -s, --save-cases Save test cases -b, --tle-break Break if Time Limit Exceeded (TLE) occurs -V, --version Prints version information
OPTIONS:
-g, --gen-file
sh
quicktest cmp --help
```shell
quicktest-cmp 0.0.2
Check the correctness of the
USAGE:
quicktest cmp [FLAGS] [OPTIONS] --correct-file
FLAGS: -h, --help Prints help information -s, --save-cases Save test cases -V, --version Prints version information -b, --wa-break Break if Wrong Answer (WA) occurs
OPTIONS:
-c, --correct-file
| Language | Version | |--------------------|------------------------| | C++ | -std=c++17 | | Python | Version 3 |
Licensed under either of these: * MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)