diff --git a/internal/2025/DaySeven/code_test.go b/internal/2025/DaySeven/code_test.go index da65d58..8a763e7 100644 --- a/internal/2025/DaySeven/code_test.go +++ b/internal/2025/DaySeven/code_test.go @@ -28,3 +28,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 40 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}