pusher/biz/service/get_pusher_options_test.go

19 lines
300 B
Go
Raw Normal View History

2024-05-20 17:57:25 +08:00
package service
import (
"context"
"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
}