You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
426 B

package dao
import (
"context"
"flag"
"go-common/app/service/live/live-dm/conf"
"path/filepath"
"testing"
)
func init() {
dir, _ := filepath.Abs("../cmd/test.toml")
flag.Set("conf", dir)
var err error
if err = conf.Init(); err != nil {
panic(err)
}
InitAPI()
InitGrpc(conf.Conf)
}
//group=qa01 DEPLOY_ENV=uat go test -run TestIncrDMNum
func TestIncrDMNum(t *testing.T) {
IncrDMNum(context.TODO(), 5392, 2)
}