probo/store/file/file_test.go
2023-11-20 14:14:09 +01:00

20 lines
273 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),
)
}