service_test.go 285 B

12345678910111213141516171819
  1. package service
  2. import (
  3. "flag"
  4. "path/filepath"
  5. "testing"
  6. "go-common/app/interface/main/captcha/conf"
  7. )
  8. var svr *Service
  9. func TestMain(m *testing.M) {
  10. flag.Parse()
  11. dir, _ := filepath.Abs("../cmd/captcha-test.toml")
  12. flag.Set("conf", dir)
  13. conf.Init()
  14. svr = New(conf.Conf)
  15. }