(t *testing.T)
| 473 | } |
| 474 | |
| 475 | func TestPickReadTool_OpenClaw(t *testing.T) { |
| 476 | sess := mockSession("openclaw/1.0", openClawTools) |
| 477 | if got := PickReadTool(sess); got != "read" { |
| 478 | t.Errorf("expected read, got %q", got) |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | func TestPickReadTool_OpenClaw_OpenAI(t *testing.T) { |
| 483 | sess := mockSession("openclaw/1.0", openClawToolsOpenAI) |
nothing calls this directly
no test coverage detected