(b *testing.B)
| 58 | } |
| 59 | |
| 60 | func BenchmarkLoggerTextFormatter(b *testing.B) { |
| 61 | doLoggerBenchmarkWithFormatter(b, &TextFormatter{}) |
| 62 | } |
| 63 | |
| 64 | func doLoggerBenchmarkWithFormatter(b *testing.B, f Formatter) { |
| 65 | b.SetParallelism(100) |
nothing calls this directly
no test coverage detected