Advent-of-Code/year25/day12/day_test.go
2025-12-14 01:52:15 +02:00

19 lines
327 B
Go

package day12
import (
"testing"
"git.bizdoc.ro/gabi-public/Advent-of-Code.git/tests"
)
func TestPart1Example(t *testing.T) {
const want = 2
tests.Test(t, "example.txt", tests.Handler(Part1), want)
}
func TestPart1(t *testing.T) {
t.Helper()
const want = 510
tests.Test(t, "input.txt", tests.Handler(Part1), want)
}