(t *testing.T)
| 410 | } |
| 411 | |
| 412 | func TestPickReadTool_CodexCLI(t *testing.T) { |
| 413 | sess := mockSession("codex/0.1", codexCLITools) |
| 414 | if got := PickReadTool(sess); got != "read_file" { |
| 415 | t.Errorf("expected read_file, got %q", got) |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | func TestPickReadTool_Cursor(t *testing.T) { |
| 420 | sess := mockSession("cursor/0.44", cursorTools) |
nothing calls this directly
no test coverage detected