(t *testing.T)
| 417 | } |
| 418 | |
| 419 | func TestPickReadTool_Cursor(t *testing.T) { |
| 420 | sess := mockSession("cursor/0.44", cursorTools) |
| 421 | if got := PickReadTool(sess); got != "read_file" { |
| 422 | t.Errorf("expected read_file, got %q", got) |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | func TestPickWriteTool_ClaudeCode(t *testing.T) { |
| 427 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
nothing calls this directly
no test coverage detected