(t *testing.T)
| 403 | } |
| 404 | |
| 405 | func TestPickReadTool_ClaudeCode(t *testing.T) { |
| 406 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
| 407 | if got := PickReadTool(sess); got != "Read" { |
| 408 | t.Errorf("expected Read, got %q", got) |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | func TestPickReadTool_CodexCLI(t *testing.T) { |
| 413 | sess := mockSession("codex/0.1", codexCLITools) |
nothing calls this directly
no test coverage detected