(b *testing.B)
| 290 | } |
| 291 | |
| 292 | func BenchmarkParsePath(b *testing.B) { |
| 293 | for i := 0; i < b.N; i++ { |
| 294 | if _, err := ParsePath("users[0].profile.name"); err != nil { |
| 295 | b.Fatal(err) |
| 296 | } |
| 297 | } |
| 298 | } |
nothing calls this directly
no test coverage detected