(b *testing.B)
| 28 | } |
| 29 | |
| 30 | func BenchmarkRenderToonArrayLarge(b *testing.B) { |
| 31 | b.ReportAllocs() |
| 32 | for b.Loop() { |
| 33 | _ = renderToonArray("agents", []string{"name", "provider", "model", "tools", "permissions"}, benchmarkTableRows) |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | func BenchmarkDecodeSSELargeStream(b *testing.B) { |
| 38 | ctx := context.Background() |
nothing calls this directly
no test coverage detected