(t *testing.T)
| 218 | } |
| 219 | |
| 220 | func TestPrintModelsDevAllowance(t *testing.T) { |
| 221 | t.Parallel() |
| 222 | |
| 223 | var buf strings.Builder |
| 224 | printModelsDevAllowance(&buf) |
| 225 | assert.Equal(t, "Models catalog: allowlisting models.dev in the sandbox proxy\n", buf.String()) |
| 226 | } |
| 227 | |
| 228 | func TestPrintToolInstallAllowance(t *testing.T) { |
| 229 | t.Parallel() |
nothing calls this directly
no test coverage detected