(t *testing.T)
| 526 | } |
| 527 | |
| 528 | func TestBuildReadArgs_ClaudeCode(t *testing.T) { |
| 529 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
| 530 | args := BuildReadArguments(sess, "Read", "/tmp/test.txt") |
| 531 | if p := args["file_path"]; p != "/tmp/test.txt" { |
| 532 | t.Errorf("expected file_path=/tmp/test.txt, got %v", args) |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | func TestBuildReadArgs_CodexCLI(t *testing.T) { |
| 537 | sess := mockSession("codex/0.1", codexCLITools) |
nothing calls this directly
no test coverage detected