store_test.go 184 B

123456789101112131415
  1. package store
  2. import (
  3. "testing"
  4. "github.com/remogatto/prettytest"
  5. )
  6. func TestRunner(t *testing.T) {
  7. prettytest.Run(
  8. t,
  9. new(quizTestSuite),
  10. new(participantTestSuite),
  11. )
  12. }