Added missing test for actual solution
This commit is contained in:
parent
39debb6875
commit
386f764fbd
|
@ -31,6 +31,10 @@ mod tests {
|
|||
fn part1_test5() -> Result<()> {
|
||||
Day::test(aoc::Part::ONE, "test-5", 11)
|
||||
}
|
||||
#[test]
|
||||
fn part1_solution() -> Result<()> {
|
||||
Day::test(aoc::Part::ONE, "input", 1275)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn part2_test1() -> Result<()> {
|
||||
|
@ -52,6 +56,10 @@ mod tests {
|
|||
fn part2_test5() -> Result<()> {
|
||||
Day::test(aoc::Part::TWO, "test-5", 26)
|
||||
}
|
||||
#[test]
|
||||
fn part2_solution() -> Result<()> {
|
||||
Day::test(aoc::Part::TWO, "input", 3605)
|
||||
}
|
||||
|
||||
// Benchmarks
|
||||
extern crate test;
|
||||
|
|
Loading…
Reference in New Issue
Block a user