| 34 | } |
| 35 | |
| 36 | type testSymbolLookup struct { |
| 37 | plugin *testPlugin |
| 38 | active pluginapi.Plugin |
| 39 | shutdownCalls int |
| 40 | registerOverride func([]byte) pluginapi.Plugin |
| 41 | reconfigureOverride func([]byte) pluginapi.Plugin |
| 42 | schemaVersion uint32 |
| 43 | lastLifecycle rpcLifecycleRequest |
| 44 | } |
| 45 | |
| 46 | func newTestSymbolLookup(plugin *testPlugin) *testSymbolLookup { |
| 47 | return &testSymbolLookup{plugin: plugin} |
nothing calls this directly
no outgoing calls
no test coverage detected