c1f1aacffe
There's no reason it should be at the top-level. Change-Id: I35b06e7baa0e425c6ff9a82964d0a1570d4eb6d0
18 lines
303 B
Go
18 lines
303 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package teststore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"storj.io/storj/private/kvstore/testsuite"
|
|
)
|
|
|
|
func TestSuite(t *testing.T) {
|
|
testsuite.RunTests(t, New())
|
|
}
|
|
func BenchmarkSuite(b *testing.B) {
|
|
testsuite.RunBenchmarks(b, New())
|
|
}
|