storj/private/kvstore/teststore/store_test.go
Egon Elbre c1f1aacffe private/kvstore: move storage package
There's no reason it should be at the top-level.

Change-Id: I35b06e7baa0e425c6ff9a82964d0a1570d4eb6d0
2023-04-06 17:26:29 +03:00

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())
}