(b *testing.B)
| 125 | } |
| 126 | |
| 127 | func BenchmarkLogLogBackendLongFileFlag(b *testing.B) { |
| 128 | backend := SetBackend(NewLogBackend(ioutil.Discard, "", log.Llongfile)) |
| 129 | backend.SetLevel(DEBUG, "") |
| 130 | RunLogBenchmark(b) |
| 131 | } |
| 132 | |
| 133 | func RunLogBenchmark(b *testing.B) { |
| 134 | password := Password("foo") |
nothing calls this directly
no test coverage detected