blob: a645feab36f266fd3437c572b049ebce9ea5e824 [file] [log] [blame]
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package godata
import (
"context"
"testing"
)
func BenchmarkGet(b *testing.B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
_, err := Get(context.Background())
if err != nil {
b.Fatal(err)
}
}
}