diff --git a/internal/2017/DayFive/code_test.go b/internal/2017/DayFive/code_test.go index b37743f..40c4112 100644 --- a/internal/2017/DayFive/code_test.go +++ b/internal/2017/DayFive/code_test.go @@ -17,3 +17,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 10 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}