(self)
| 2132 | assert v.denominator().as_long() == 113 |
| 2133 | |
| 2134 | def test_boolval(self): |
| 2135 | assert isinstance(BoolVal(True)._ast, BoolLit) |
| 2136 | assert isinstance(BoolVal(False)._ast, BoolLit) |
| 2137 | |
| 2138 | def test_bitvecval(self): |
| 2139 | v = BitVecVal(0xFF, 8) |