(t *testing.T)
| 37 | } |
| 38 | |
| 39 | func TestNameFor_DescriberFallback(t *testing.T) { |
| 40 | t.Parallel() |
| 41 | ts := &restartableToolset{desc: "mcp(stdio)"} |
| 42 | assert.Equal(t, "mcp(stdio)", nameForTest(ts, tools.DescribeToolSet(ts))) |
| 43 | } |
| 44 | |
| 45 | // TestRestartToolset_HappyPath constructs a fake agent (LocalRuntime |
| 46 | // with a single statable+restartable toolset) and exercises the by-name |
nothing calls this directly
no test coverage detected