probo/pkg/store/file/file_test.go

20 lines
267 B
Go

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