probo/store/file/file_test.go

18 lines
214 B
Go
Raw Normal View History

2023-06-28 17:21:59 +02:00
package file
import (
"testing"
"github.com/remogatto/prettytest"
)
2023-10-07 11:43:12 +02:00
var testdataDir = "./testdata"
2023-06-28 17:21:59 +02:00
func TestRunner(t *testing.T) {
prettytest.Run(
t,
2023-10-07 11:43:12 +02:00
new(quizTestSuite),
new(collectionTestSuite),
2023-06-28 17:21:59 +02:00
)
}