file_test.go 267 B

1234567891011121314151617181920
  1. package file
  2. import (
  3. "testing"
  4. "github.com/remogatto/prettytest"
  5. )
  6. var testdataDir = "./testdata"
  7. func TestRunner(t *testing.T) {
  8. DefaultBaseDir = "testdata"
  9. prettytest.Run(
  10. t,
  11. new(quizTestSuite),
  12. new(participantTestSuite),
  13. new(examTestSuite),
  14. )
  15. }