advent_of_code_2024/day_13/solution_test.go

16 lines
287 B
Go
Raw Permalink Normal View History

2024-12-13 08:38:49 +00:00
package day_13_test
import (
"advent_of_code_2024/day_13"
"advent_of_code_2024/helpers"
_ "embed"
"testing"
)
//go:embed example_data.txt
var ExampleData string
func TestBasicSolutionExample(t *testing.T) {
helpers.Check(t, day_13.SolveBasic, helpers.Format(ExampleData), 480)
}