(t *testing.T)
| 53 | } |
| 54 | |
| 55 | func TestSession_SetModelOmitsContextTierWhenUnset(t *testing.T) { |
| 56 | params := captureSetModelRequest(t, nil) |
| 57 | |
| 58 | if _, ok := params["contextTier"]; ok { |
| 59 | t.Fatalf("expected contextTier to be omitted, got %v", params["contextTier"]) |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | func TestSession_MCPAuthRequestSendsHostToken(t *testing.T) { |
| 64 | stdinR, stdinW := io.Pipe() |
nothing calls this directly
no test coverage detected
searching dependent graphs…