probo/store/store_test.go

16 lines
212 B
Go

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