mock_repo_test.go

 1package repository
 2
 3import (
 4	"testing"
 5)
 6
 7func TestMockRepo(t *testing.T) {
 8	creator := func(t TestingT, bare bool) TestedRepo { return NewMockRepo() }
 9
10	RepoTest(t, creator)
11}