(code *DeviceCodeResult)
| 51 | } |
| 52 | |
| 53 | func (c *MockDeviceCodeCallback) Callback(code *DeviceCodeResult) error { |
| 54 | c.Called = true |
| 55 | c.DeviceCodeResult = code |
| 56 | if c.ReturnsError != nil { |
| 57 | return c.ReturnsError |
| 58 | } |
| 59 | return nil |
| 60 | } |
| 61 | |
| 62 | var _ = ginkgo.Describe("DeviceCodeFlow", func() { |
| 63 |
nothing calls this directly
no outgoing calls
no test coverage detected