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),
|
2023-11-18 11:12:07 +01:00
|
|
|
new(participantTestSuite),
|
2023-11-13 21:01:12 +01:00
|
|
|
)
|
|
|
|
}
|