(t *testing.T)
| 542 | } |
| 543 | |
| 544 | func TestBuildReadArgs_Cursor(t *testing.T) { |
| 545 | sess := mockSession("cursor/0.44", cursorTools) |
| 546 | args := BuildReadArguments(sess, "read_file", "/tmp/test.txt") |
| 547 | if p := args["path"]; p != "/tmp/test.txt" { |
| 548 | t.Errorf("expected path=/tmp/test.txt, got %v", args) |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | func TestBuildWriteArgs_ClaudeCode(t *testing.T) { |
| 553 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
nothing calls this directly
no test coverage detected