mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-27 02:00:52 -05:00
12 lines
135 B
Go
12 lines
135 B
Go
package controldisplay
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkToCsvCell(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
toCsvCell(i)
|
|
}
|
|
}
|