Macro adventurous::test_part_two_solution
source · macro_rules! test_part_two_solution { ($input_path:literal, $expected:literal) => { ... }; }
Expand description
Emits a test case to test the solution for part two of the puzzle.
Use this once you’ve correctly solved part two of the puzzle to ensure your solution doesn’t regress as you modify it.
Examples
use adventurous::test_part_two_solution;
test_part_two_solution!("input.txt", 73);