(b *testing.B)
| 356 | } |
| 357 | |
| 358 | func BenchmarkNestedMap(b *testing.B) { |
| 359 | o := testNestedOptions() |
| 360 | |
| 361 | b.ResetTimer() |
| 362 | |
| 363 | for b.Loop() { |
| 364 | _ = o.NestedMap() |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | func BenchmarkMap(b *testing.B) { |
| 369 | o := testNestedOptions() |
nothing calls this directly
no test coverage detected