(self)
| 4040 | assert isinstance(result, ArrayRef) |
| 4041 | |
| 4042 | def test_set_intersect(self): |
| 4043 | a = EmptySet(IntSort()) |
| 4044 | b = FullSet(IntSort()) |
| 4045 | result = SetIntersect(a, b) |
| 4046 | assert isinstance(result, ArrayRef) |
| 4047 | |
| 4048 | def test_set_complement(self): |
| 4049 | s = EmptySet(IntSort()) |
nothing calls this directly
no test coverage detected