(t *testing.T)
| 382 | } |
| 383 | |
| 384 | func TestPickShellTool_Cline(t *testing.T) { |
| 385 | sess := mockSession("cline/3.18", clineTools) |
| 386 | if got := PickShellTool(sess); got != "execute_command" { |
| 387 | t.Errorf("expected execute_command, got %q", got) |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | func TestPickShellTool_Cursor(t *testing.T) { |
| 392 | sess := mockSession("cursor/0.44", cursorTools) |
nothing calls this directly
no test coverage detected