pusher/biz/service/get_pusher_options_test.go
timerzz 4ec0cd1564
Some checks failed
Build image / build (push) Failing after 4m48s
feat 测试
2024-05-20 17:57:25 +08:00

20 lines
362 B
Go

package service
import (
"context"
push "gitea.timerzz.com/kedaya_haitao/pusher/kitex_gen/push"
"testing"
)
func TestGetPusherOptions_Run(t *testing.T) {
ctx := context.Background()
s := NewGetPusherOptionsService(ctx)
// init req and assert value
resp, err := s.Run()
t.Logf("err: %v", err)
t.Logf("resp: %v", resp)
// todo: edit your unit test
}