(self)
| 4051 | assert isinstance(result, ArrayRef) |
| 4052 | |
| 4053 | def test_set_difference(self): |
| 4054 | a = FullSet(IntSort()) |
| 4055 | b = EmptySet(IntSort()) |
| 4056 | result = SetDifference(a, b) |
| 4057 | assert isinstance(result, ArrayRef) |
| 4058 | |
| 4059 | def test_is_subset(self): |
| 4060 | a = EmptySet(IntSort()) |
nothing calls this directly
no test coverage detected