(self, kernel)
| 3347 | """Test TupleSort factory.""" |
| 3348 | |
| 3349 | def test_create_tuple(self, kernel): |
| 3350 | Pair, mk_pair, [fst, snd] = TupleSort("Pair_t1", [IntSort(), IntSort()]) |
| 3351 | assert isinstance(Pair, SortRef) |
| 3352 | assert Pair.name() == "Pair_t1" |
| 3353 | |
| 3354 | def test_tuple_constructor(self, kernel): |
| 3355 | Pair, mk_pair, [fst, snd] = TupleSort("Pair_t2", [IntSort(), IntSort()]) |