mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
13a8b5822f
This drastically reduces the amount of duplicated test code.
28 lines
566 B
Go
28 lines
566 B
Go
package mem_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/restic/restic/internal/backend/mem"
|
|
"github.com/restic/restic/internal/backend/test"
|
|
)
|
|
|
|
func newTestSuite() *test.Suite[struct{}] {
|
|
return &test.Suite[struct{}]{
|
|
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
|
NewConfig: func() (*struct{}, error) {
|
|
return &struct{}{}, nil
|
|
},
|
|
|
|
Factory: mem.NewFactory(),
|
|
}
|
|
}
|
|
|
|
func TestSuiteBackendMem(t *testing.T) {
|
|
newTestSuite().RunTests(t)
|
|
}
|
|
|
|
func BenchmarkSuiteBackendMem(t *testing.B) {
|
|
newTestSuite().RunBenchmarks(t)
|
|
}
|