| 12 | ) |
| 13 | |
| 14 | type mockPullRequestClient struct { |
| 15 | createFunc func(opt *bitbucket.PullRequestsOptions) (any, error) |
| 16 | getsFunc func(opt *bitbucket.PullRequestsOptions) (any, error) |
| 17 | getFunc func(opt *bitbucket.PullRequestsOptions) (any, error) |
| 18 | getCommitFunc func(opt *bitbucket.CommitsOptions) (any, error) |
| 19 | mergeFunc func(opt *bitbucket.PullRequestsOptions) (any, error) |
| 20 | } |
| 21 | |
| 22 | func (m *mockPullRequestClient) Create( |
| 23 | opt *bitbucket.PullRequestsOptions, |
nothing calls this directly
no outgoing calls
no test coverage detected