(b *testing.B)
| 169 | } |
| 170 | |
| 171 | func BenchmarkShortAppend(b *testing.B) { |
| 172 | bitset := New() |
| 173 | |
| 174 | for i := 0; i < b.N; i++ { |
| 175 | bitset.AppendBools(b0, b1, b0, b1, b0, b1, b0) |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | func TestLen(t *testing.T) { |
| 180 | randomBools := make([]bool, 128) |
nothing calls this directly
no test coverage detected
searching dependent graphs…