From 8503cee52bef295964ecd76bb7ff7a4993c1a482 Mon Sep 17 00:00:00 2001 From: Kharec Date: Wed, 10 Dec 2025 18:41:25 +0100 Subject: [PATCH] test: add unit test for part two --- internal/2025/DayTen/code_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/2025/DayTen/code_test.go b/internal/2025/DayTen/code_test.go index 219a511..cee0d41 100644 --- a/internal/2025/DayTen/code_test.go +++ b/internal/2025/DayTen/code_test.go @@ -15,3 +15,11 @@ func TestPartOne(t *testing.T) { t.Errorf("PartOne() = %d, want %d", got, expected) } } + +func TestPartTwo(t *testing.T) { + expected := 33 + got := PartTwo(testInput) + if got != expected { + t.Errorf("PartTwo() = %d, want %d", got, expected) + } +}