storj/storage/teststore/store_test.go
2019-01-24 15:15:10 -05:00

14 lines
298 B
Go

// Copyright (C) 2019 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()) }