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