(t *testing.T)
| 445 | } |
| 446 | |
| 447 | func TestPickWriteTool_Cursor(t *testing.T) { |
| 448 | sess := mockSession("cursor/0.44", cursorTools) |
| 449 | if got := PickWriteTool(sess); got != "create_file" { |
| 450 | t.Errorf("expected create_file, got %q", got) |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | func TestPickWriteTool_Windsurf(t *testing.T) { |
| 455 | sess := mockSession("windsurf/1.2", windsurfTools) |
nothing calls this directly
no test coverage detected