diff --git a/internal/2025/DayFive/code_test.go b/internal/2025/DayFive/code_test.go index 95d9ce2..b8edb9b 100644 --- a/internal/2025/DayFive/code_test.go +++ b/internal/2025/DayFive/code_test.go @@ -23,3 +23,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 14 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}