(self)
| 2461 | |
| 2462 | class TestBVExtras: |
| 2463 | def test_repeat_bitvec(self): |
| 2464 | x = BitVec("x", 4) |
| 2465 | r = RepeatBitVec(3, x) |
| 2466 | assert r.size() == 12 |
| 2467 | |
| 2468 | def test_repeat_bitvec_one(self): |
| 2469 | x = BitVec("x", 8) |
nothing calls this directly
no test coverage detected