(b *testing.B)
| 288 | } |
| 289 | |
| 290 | func BenchmarkEquality(b *testing.B) { |
| 291 | ba := newBitArray(160000) |
| 292 | other := newBitArray(ba.Capacity()) |
| 293 | |
| 294 | b.ResetTimer() |
| 295 | |
| 296 | for i := 0; i < b.N; i++ { |
| 297 | ba.Equals(other) |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | func TestIntersects(t *testing.T) { |
| 302 | ba := newBitArray(10) |
nothing calls this directly
no test coverage detected
searching dependent graphs…