/aoc-2022

Advent of Code: 2022

Primary LanguageRust

Collection of Personal Advent of Code Solutions for 2022

Run tests

Run unit tests with:

cargo test --lib --workspace

For quieter output:

cargo t --lib --workspace --quiet
# OR
cargo t --lib --workspace -q

For even quieter output:

cargo t --lib --workspace -q 2>/dev/null

This last command sends the cargo build warnings to the null device, so that they don’t pollute the test output.