mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-11 00:02:37 -04:00
14 lines
225 B
Go
14 lines
225 B
Go
package controldisplay
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkToCsvCell(b *testing.B) {
|
|
// the factory is called once per render execution
|
|
toCsvCell := toCSVCellFnFactory("|")
|
|
for i := 0; i < b.N; i++ {
|
|
toCsvCell(i)
|
|
}
|
|
}
|