(t *testing.T)
| 438 | } |
| 439 | |
| 440 | func TestPickWriteTool_Cline(t *testing.T) { |
| 441 | sess := mockSession("cline/3.18", clineTools) |
| 442 | if got := PickWriteTool(sess); got != "write_file" { |
| 443 | t.Errorf("expected write_file, got %q", got) |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | func TestPickWriteTool_Cursor(t *testing.T) { |
| 448 | sess := mockSession("cursor/0.44", cursorTools) |
nothing calls this directly
no test coverage detected