diff --git a/2023/day-1/main_test.go b/2023/day-1/main_test.go index f10f7c3..8907a40 100644 --- a/2023/day-1/main_test.go +++ b/2023/day-1/main_test.go @@ -6,6 +6,7 @@ import ( ) func TestDay1Trebuchet(t *testing.T) { + t.Logf("This is the test suite for Advent of Code - Day 1 - Trebuchet?!") t.Run("Test the solution for Part 1", testPartOneCalculateSumCalibrationValues) t.Run("Test the solution for Part 2", testPartTwoCalculateSumCalibrationValues) } diff --git a/2023/day-2/main_test.go b/2023/day-2/main_test.go index d531401..b982ae0 100644 --- a/2023/day-2/main_test.go +++ b/2023/day-2/main_test.go @@ -6,6 +6,8 @@ import ( ) func TestDay2CubeConundrum(t *testing.T) { + t.Logf("This is the test suite for Advent of Code - Day 2 - Cube Conundrum") + testGames := ` Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green Game 2: 1 blue, 2 green; 3 green, 4 blue, 1 red; 1 green, 1 blue