diff --git a/internal/2025/DayThree/code_test.go b/internal/2025/DayThree/code_test.go index 27fc28e..4b00a9e 100644 --- a/internal/2025/DayThree/code_test.go +++ b/internal/2025/DayThree/code_test.go @@ -16,3 +16,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 3121910778619 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}