probo/store/file/file_test.go

18 lines
243 B
Go

package file
import (
"testing"
"github.com/remogatto/prettytest"
)
var testdataDir = "./testdata"
func TestRunner(t *testing.T) {
prettytest.Run(
t,
new(quizTestSuite),
new(collectionTestSuite),
new(participantTestSuite),
)
}