probo/store/file/file_test.go

22 خطوط
318 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(collectionTestSuite),
new(participantTestSuite),
new(groupTestSuite),
new(examTestSuite),
)
}