(name, toolsetID string, readOnly bool, isDefault bool)
| 28 | } |
| 29 | |
| 30 | func mockToolFull(name, toolsetID string, readOnly bool, isDefault bool) inventory.ServerTool { |
| 31 | return inventory.ServerTool{ |
| 32 | Tool: mcp.Tool{ |
| 33 | Name: name, |
| 34 | Annotations: &mcp.ToolAnnotations{ReadOnlyHint: readOnly}, |
| 35 | }, |
| 36 | Toolset: inventory.ToolsetMetadata{ |
| 37 | ID: inventory.ToolsetID(toolsetID), |
| 38 | Description: "Test: " + toolsetID, |
| 39 | Default: isDefault, |
| 40 | }, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | type allScopesFetcher struct{} |
| 45 |
no test coverage detected