(b *testing.B)
| 269 | } |
| 270 | |
| 271 | func Benchmark_ConcatFunc(b *testing.B) { |
| 272 | b.ReportAllocs() |
| 273 | for i := 0; i < b.N; i++ { |
| 274 | _ = concatFunc(testQuery("a"), testQuery("b"))(nil, nil) |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | func Benchmark_GetHashCode(b *testing.B) { |
| 279 | // Create a more complex test node that will actually go through the full getHashCode paths |
nothing calls this directly
no test coverage detected
searching dependent graphs…