mirror of
https://github.com/theoludwig/advent_of_code.git
synced 2025-12-11 00:32:42 +01:00
test: add cases for input.txt
This commit is contained in:
@@ -76,4 +76,14 @@ mod day_1_tests {
|
||||
fn test_part_2_example() {
|
||||
assert_eq!(part_2(include_str!("../input_example_2.txt")), 281);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_part_1() {
|
||||
assert_eq!(part_1(include_str!("../input.txt")), 55130);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_part_2() {
|
||||
assert_eq!(part_2(include_str!("../input.txt")), 54985);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user