Files
steampipe/pkg/control/controldisplay/template_functions_test.go

12 lines
135 B
Go

package controldisplay
import (
"testing"
)
func BenchmarkToCsvCell(b *testing.B) {
for i := 0; i < b.N; i++ {
toCsvCell(i)
}
}