([]byte)
| 212 | } |
| 213 | |
| 214 | func (p *testPlugin) Register([]byte) pluginapi.Plugin { |
| 215 | p.registerCalls++ |
| 216 | if p.panicOnRegister { |
| 217 | panic("register panic") |
| 218 | } |
| 219 | return p.registerResult |
| 220 | } |
| 221 | |
| 222 | func (p *testPlugin) Reconfigure([]byte) pluginapi.Plugin { |
| 223 | p.reconfigureCalls++ |
no outgoing calls
no test coverage detected