16 lines
291 B
Go
16 lines
291 B
Go
|
package day_14_test
|
||
|
|
||
|
import (
|
||
|
"advent_of_code_2024/day_14"
|
||
|
"advent_of_code_2024/helpers"
|
||
|
_ "embed"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
//go:embed example_data.txt
|
||
|
var ExampleData string
|
||
|
|
||
|
func TestBasicSolutionExample(t *testing.T) {
|
||
|
helpers.Check(t, day_14.SolveBasicSmall, helpers.Format(ExampleData), 12)
|
||
|
}
|