(self)
| 515 | |
| 516 | class TestBitVec: |
| 517 | def test_bitvec_var(self): |
| 518 | x = BitVec("x", 8) |
| 519 | assert isinstance(x._ast, Var) and x._ast.name == "x" |
| 520 | assert x.sort() == BitVecSort(8) |
| 521 | |
| 522 | def test_bitvec_val(self): |
| 523 | v = BitVecVal(42, 8) |
nothing calls this directly
no test coverage detected