| 11 | ) |
| 12 | |
| 13 | type FakeSSHCodeGetter struct { |
| 14 | ExecuteStub func(flags.FlagContext) error |
| 15 | executeMutex sync.RWMutex |
| 16 | executeArgsForCall []struct { |
| 17 | arg1 flags.FlagContext |
| 18 | } |
| 19 | executeReturns struct { |
| 20 | result1 error |
| 21 | } |
| 22 | executeReturnsOnCall map[int]struct { |
| 23 | result1 error |
| 24 | } |
| 25 | GetStub func() (string, error) |
| 26 | getMutex sync.RWMutex |
| 27 | getArgsForCall []struct { |
| 28 | } |
| 29 | getReturns struct { |
| 30 | result1 string |
| 31 | result2 error |
| 32 | } |
| 33 | getReturnsOnCall map[int]struct { |
| 34 | result1 string |
| 35 | result2 error |
| 36 | } |
| 37 | MetaDataStub func() commandregistry.CommandMetadata |
| 38 | metaDataMutex sync.RWMutex |
| 39 | metaDataArgsForCall []struct { |
| 40 | } |
| 41 | metaDataReturns struct { |
| 42 | result1 commandregistry.CommandMetadata |
| 43 | } |
| 44 | metaDataReturnsOnCall map[int]struct { |
| 45 | result1 commandregistry.CommandMetadata |
| 46 | } |
| 47 | RequirementsStub func(requirements.Factory, flags.FlagContext) ([]requirements.Requirement, error) |
| 48 | requirementsMutex sync.RWMutex |
| 49 | requirementsArgsForCall []struct { |
| 50 | arg1 requirements.Factory |
| 51 | arg2 flags.FlagContext |
| 52 | } |
| 53 | requirementsReturns struct { |
| 54 | result1 []requirements.Requirement |
| 55 | result2 error |
| 56 | } |
| 57 | requirementsReturnsOnCall map[int]struct { |
| 58 | result1 []requirements.Requirement |
| 59 | result2 error |
| 60 | } |
| 61 | SetDependencyStub func(commandregistry.Dependency, bool) commandregistry.Command |
| 62 | setDependencyMutex sync.RWMutex |
| 63 | setDependencyArgsForCall []struct { |
| 64 | arg1 commandregistry.Dependency |
| 65 | arg2 bool |
| 66 | } |
| 67 | setDependencyReturns struct { |
| 68 | result1 commandregistry.Command |
| 69 | } |
| 70 | setDependencyReturnsOnCall map[int]struct { |
nothing calls this directly
no outgoing calls
no test coverage detected