=================================================================== C. Tool Selection Tests (per agent) ===================================================================
(t *testing.T)
| 368 | // =================================================================== |
| 369 | |
| 370 | func TestPickShellTool_ClaudeCode(t *testing.T) { |
| 371 | sess := mockSession("claude-code/1.0", claudeCodeTools) |
| 372 | if got := PickShellTool(sess); got != "Bash" { |
| 373 | t.Errorf("expected Bash, got %q", got) |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | func TestPickShellTool_CodexCLI(t *testing.T) { |
| 378 | sess := mockSession("codex_cli_rs/0.112", codexCLITools) |
nothing calls this directly
no test coverage detected