| 9 | ) |
| 10 | |
| 11 | type FakePluginsActor struct { |
| 12 | GetOutdatedPluginsStub func() ([]pluginaction.OutdatedPlugin, error) |
| 13 | getOutdatedPluginsMutex sync.RWMutex |
| 14 | getOutdatedPluginsArgsForCall []struct { |
| 15 | } |
| 16 | getOutdatedPluginsReturns struct { |
| 17 | result1 []pluginaction.OutdatedPlugin |
| 18 | result2 error |
| 19 | } |
| 20 | getOutdatedPluginsReturnsOnCall map[int]struct { |
| 21 | result1 []pluginaction.OutdatedPlugin |
| 22 | result2 error |
| 23 | } |
| 24 | invocations map[string][][]interface{} |
| 25 | invocationsMutex sync.RWMutex |
| 26 | } |
| 27 | |
| 28 | func (fake *FakePluginsActor) GetOutdatedPlugins() ([]pluginaction.OutdatedPlugin, error) { |
| 29 | fake.getOutdatedPluginsMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected