(self)
| 4046 | assert isinstance(result, ArrayRef) |
| 4047 | |
| 4048 | def test_set_complement(self): |
| 4049 | s = EmptySet(IntSort()) |
| 4050 | result = SetComplement(s) |
| 4051 | assert isinstance(result, ArrayRef) |
| 4052 | |
| 4053 | def test_set_difference(self): |
| 4054 | a = FullSet(IntSort()) |
nothing calls this directly
no test coverage detected