(t *testing.T)
| 396 | } |
| 397 | |
| 398 | func TestPickShellTool_Windsurf(t *testing.T) { |
| 399 | sess := mockSession("windsurf/1.2", windsurfTools) |
| 400 | if got := PickShellTool(sess); got != "shell_command" { |
| 401 | t.Errorf("expected shell_command, got %q", got) |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | func TestPickReadTool_ClaudeCode(t *testing.T) { |
| 406 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
nothing calls this directly
no test coverage detected