From 904a2919f630238d39e51d5d9de7d216354e7a82 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Mon, 4 Dec 2023 23:19:53 +0000 Subject: [PATCH] tests: add missing test suite descriptions --- 2023/day-1/main_test.go | 1 + 2023/day-2/main_test.go | 2 ++ 2 files changed, 3 insertions(+) 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