14 lines
298 B
Go
14 lines
298 B
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package teststore
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"storj.io/storj/storage/testsuite"
|
||
|
)
|
||
|
|
||
|
func TestSuite(t *testing.T) { testsuite.RunTests(t, New()) }
|
||
|
func BenchmarkSuite(b *testing.B) { testsuite.RunBenchmarks(b, New()) }
|