diff --git a/internal/2025/DayOne/code_test.go b/internal/2025/DayOne/code_test.go index 15b0715..4b8b4ea 100644 --- a/internal/2025/DayOne/code_test.go +++ b/internal/2025/DayOne/code_test.go @@ -22,3 +22,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 6 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}