atcoder-auto-tester

license: MIT GitHub version crates.io

An auto tester for AtCoder. This CLI tool automatically downloads sample cases and runs tests when it detects file changes. Thanks online-judge-tools :+1:

Prerequisites

Installation

terminal $ cargo install atcoder-auto-tester

Usage

  1. Create .config.toml.
  2. Execute: $ atcoder-auto-tester.
  3. Solve problems :)

.config.toml

For example, set .config.toml for AGC001 as follows:

C++

toml command = "sh -c 'g++ {}.cpp && ./a.out'" file_name = "{}.cpp" task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"

D

toml command = "rdmd {}.d" file_name = "{}.d" task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"

Help

```terminal $ atcoder-auto-tester --help atcoder-auto-tester 0.1.0 An auto tester for AtCoder. This tool monitors files and automatically runs tests when it detects file changes.

USAGE: atcoder-auto-tester [FLAGS] [OPTIONS]

FLAGS: --clean Remove the test directory --login Login to AtCoder -h, --help Print help information -v, --version Print version information

OPTIONS: -f, --config-file Set a config file name [default: .config.toml] -d, --test-directory Set a directory for saving test cases [default: .test] -t, --timeout Set a time limit for test execution [unit: seconds] [default: 5] ```

License

MIT