()
| 50 | } |
| 51 | |
| 52 | func (c *countingTransport) CallCount() int { |
| 53 | c.mu.Lock() |
| 54 | defer c.mu.Unlock() |
| 55 | return c.calls |
| 56 | } |
| 57 | |
| 58 | func newMockGQLClient(viewerLogin string, isPrivate bool) (*githubv4.Client, *countingTransport) { |
| 59 | variables := map[string]any{ |
no outgoing calls
no test coverage detected