(t *testing.T)
| 534 | } |
| 535 | |
| 536 | func TestBuildReadArgs_CodexCLI(t *testing.T) { |
| 537 | sess := mockSession("codex/0.1", codexCLITools) |
| 538 | args := BuildReadArguments(sess, "read_file", "/tmp/test.txt") |
| 539 | if p := args["path"]; p != "/tmp/test.txt" { |
| 540 | t.Errorf("expected path=/tmp/test.txt, got %v", args) |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | func TestBuildReadArgs_Cursor(t *testing.T) { |
| 545 | sess := mockSession("cursor/0.44", cursorTools) |
nothing calls this directly
no test coverage detected