| 12345678910111213141516 |
- package service
- import (
- "flag"
- "os"
- "testing"
- "gitea.ckfah.com/cjjy/gocommon/pkg/boot"
- )
- func TestMain(m *testing.M) {
- flag.Parse()
- boot.Init(boot.DB, boot.Qconf, boot.Redis, boot.Trace, boot.NacosDiscover, boot.RocketMQProducer, boot.RocketMQConsumer)
- exitCode := m.Run()
- os.Exit(exitCode)
- }
|