advent_of_code_2024/day_11/solution_test.go

16 lines
289 B
Go
Raw Permalink Normal View History

2024-12-11 09:04:55 +00:00
package day_11_test
import (
"advent_of_code_2024/day_11"
2024-12-12 21:12:54 +00:00
"advent_of_code_2024/helpers"
2024-12-11 09:04:55 +00:00
_ "embed"
"testing"
)
//go:embed example_data.txt
var ExampleData string
func TestBasicSolutionExample(t *testing.T) {
2024-12-12 21:12:54 +00:00
helpers.Check(t, day_11.SolveBasic, helpers.Format(ExampleData), 55312)
2024-12-11 09:04:55 +00:00
}