store_test.go 212 B

12345678910111213141516
  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(collectionTestSuite),
  11. new(participantTestSuite),
  12. )
  13. }