(self)
| 1490 | assert isinstance(r, ExprRef) |
| 1491 | |
| 1492 | def test_complement(self): |
| 1493 | r = Complement(Re(StringVal("a"))) |
| 1494 | assert isinstance(r, ExprRef) |
| 1495 | |
| 1496 | def test_range(self): |
| 1497 | r = Range("a", "z") |
nothing calls this directly
no test coverage detected