15 lines
184 B
Go
15 lines
184 B
Go
package store
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/remogatto/prettytest"
|
|
)
|
|
|
|
func TestRunner(t *testing.T) {
|
|
prettytest.Run(
|
|
t,
|
|
new(quizTestSuite),
|
|
new(participantTestSuite),
|
|
)
|
|
}
|