2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-09-05 17:10:35 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package teststore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"storj.io/storj/storage/testsuite"
|
|
|
|
)
|
|
|
|
|
2020-01-22 19:00:46 +00:00
|
|
|
func TestSuite(t *testing.T) {
|
|
|
|
store := New()
|
|
|
|
store.SetLookupLimit(500)
|
|
|
|
testsuite.RunTests(t, store)
|
|
|
|
}
|
|
|
|
func BenchmarkSuite(b *testing.B) {
|
|
|
|
testsuite.RunBenchmarks(b, New())
|
|
|
|
}
|