(self)
| 2466 | assert r.size() == 12 |
| 2467 | |
| 2468 | def test_repeat_bitvec_one(self): |
| 2469 | x = BitVec("x", 8) |
| 2470 | r = RepeatBitVec(1, x) |
| 2471 | assert r._ast == x._ast |
| 2472 | |
| 2473 | def test_repeat_bitvec_invalid(self): |
| 2474 | x = BitVec("x", 4) |
nothing calls this directly
no test coverage detected