(t *testing.T)
| 459 | } |
| 460 | |
| 461 | func TestPickShellTool_OpenClaw(t *testing.T) { |
| 462 | sess := mockSession("openclaw/1.0", openClawTools) |
| 463 | if got := PickShellTool(sess); got != "exec" { |
| 464 | t.Errorf("expected exec, got %q", got) |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | func TestPickShellTool_OpenClaw_OpenAI(t *testing.T) { |
| 469 | sess := mockSession("openclaw/1.0", openClawToolsOpenAI) |
nothing calls this directly
no test coverage detected