(t *testing.T)
| 211 | } |
| 212 | |
| 213 | func TestNewBitArrayNeverCrashesOnNegatives(t *testing.T) { |
| 214 | bitList := []int{-127, -128, -1 << 31} |
| 215 | for _, bits := range bitList { |
| 216 | _ = NewBitArray(bits) |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | func TestJSONMarshalUnmarshal(t *testing.T) { |
| 221 |
nothing calls this directly
no test coverage detected