service_test.go 308 B

12345678910111213141516171819202122
  1. package newbie
  2. import (
  3. "flag"
  4. "go-common/app/interface/main/growup/conf"
  5. "os"
  6. "testing"
  7. )
  8. var (
  9. s *Service
  10. )
  11. func TestMain(m *testing.M) {
  12. flag.Set("conf", "../../cmd/growup-interface.toml")
  13. flag.Parse()
  14. if err := conf.Init(); err != nil {
  15. panic(err)
  16. }
  17. s = New(conf.Conf)
  18. os.Exit(m.Run())
  19. }