(b *testing.B)
| 346 | } |
| 347 | |
| 348 | func BenchmarkLogValue(b *testing.B) { |
| 349 | o := testNestedOptions() |
| 350 | |
| 351 | b.ResetTimer() |
| 352 | |
| 353 | for b.Loop() { |
| 354 | _ = o.LogValue() |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | func BenchmarkNestedMap(b *testing.B) { |
| 359 | o := testNestedOptions() |
nothing calls this directly
no test coverage detected