19 lines
300 B
Go
19 lines
300 B
Go
|
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
|
||
|
|
||
|
}
|