(b *testing.B)
| 21 | ) |
| 22 | |
| 23 | func BenchmarkRenderHumanTableLarge(b *testing.B) { |
| 24 | b.ReportAllocs() |
| 25 | for b.Loop() { |
| 26 | _ = renderHumanTable("Agents", benchmarkTableHeaders, benchmarkTableRows) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | func BenchmarkRenderToonArrayLarge(b *testing.B) { |
| 31 | b.ReportAllocs() |
nothing calls this directly
no test coverage detected