aoc2024/day-22/internal/one/solve_internal_test.go

16 lines
187 B
Go
Raw Permalink Normal View History

2024-12-22 16:54:03 +00:00
package one
import (
_ "embed"
"os"
"testing"
)
//go:embed testdata/input.txt
var data []byte
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}