diff --git a/internal/2025/DayFour/code_test.go b/internal/2025/DayFour/code_test.go index 40b1556..49a05d0 100644 --- a/internal/2025/DayFour/code_test.go +++ b/internal/2025/DayFour/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 := 43 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}