aoc2024/.scaffold/aoc/{{ .Project }}/internal/one/solve_internal_test.go

16 lines
195 B
Go
Raw Permalink Normal View History

package one
import (
_ "embed"
"os"
"testing"
)
//go:embed testdata/input.txt
var inputBuf []byte
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(inputBuf)
}