(t *testing.T)
| 566 | } |
| 567 | |
| 568 | func TestBuildWriteArgs_Cursor(t *testing.T) { |
| 569 | sess := mockSession("cursor/0.44", cursorTools) |
| 570 | args := BuildWriteArguments(sess, "create_file", "/tmp/out.txt", "hello") |
| 571 | if args["path"] != "/tmp/out.txt" || args["file_text"] != "hello" { |
| 572 | t.Errorf("expected {path, file_text}, got %v", args) |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | func TestBuildWriteArgs_Cline(t *testing.T) { |
| 577 | sess := mockSession("cline/3.18", clineTools) |
nothing calls this directly
no test coverage detected