probo/store/store_test.go

17 lines
212 B
Go
Raw Normal View History

2023-11-13 21:01:12 +01:00
package store
import (
"testing"
"github.com/remogatto/prettytest"
)
func TestRunner(t *testing.T) {
prettytest.Run(
t,
new(quizTestSuite),
new(collectionTestSuite),
new(participantTestSuite),
2023-11-13 21:01:12 +01:00
)
}