(t *testing.T)
| 550 | } |
| 551 | |
| 552 | func TestBuildWriteArgs_ClaudeCode(t *testing.T) { |
| 553 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
| 554 | args := BuildWriteArguments(sess, "Write", "/tmp/out.txt", "hello") |
| 555 | if args["file_path"] != "/tmp/out.txt" || args["content"] != "hello" { |
| 556 | t.Errorf("expected {file_path, content}, got %v", args) |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | func TestBuildWriteArgs_CodexCLI(t *testing.T) { |
| 561 | sess := mockSession("codex/0.1", codexCLITools) |
nothing calls this directly
no test coverage detected