(self)
| 2509 | |
| 2510 | class TestBVOverflow: |
| 2511 | def test_add_no_overflow_unsigned(self): |
| 2512 | x, y = BitVecs("x y", 8) |
| 2513 | r = BVAddNoOverflow(x, y) |
| 2514 | assert isinstance(r, BoolRef) |
| 2515 | |
| 2516 | def test_add_no_overflow_signed(self): |
| 2517 | x, y = BitVecs("x y", 8) |
nothing calls this directly
no test coverage detected