diff --git a/internal/2015/DayFifteen/code_test.go b/internal/2015/DayFifteen/code_test.go index ba3884d..9506556 100644 --- a/internal/2015/DayFifteen/code_test.go +++ b/internal/2015/DayFifteen/code_test.go @@ -14,3 +14,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 57600000 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}