(b *testing.B)
| 136 | var Result string |
| 137 | |
| 138 | func BenchmarkNewQuery(b *testing.B) { |
| 139 | b.ReportAllocs() |
| 140 | for i := 0; i < b.N; i++ { |
| 141 | Result = Get("foo=bar&baz=123&bool", "baz") |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | func BenchmarkStdQuery(b *testing.B) { |
| 146 | b.ReportAllocs() |
nothing calls this directly
no test coverage detected
searching dependent graphs…