SeqSort creates a SeqSortRef.
(self)
| 2046 | """Tests for Sequence sort and operations.""" |
| 2047 | |
| 2048 | def test_seq_sort_creation(self): |
| 2049 | """SeqSort creates a SeqSortRef.""" |
| 2050 | |
| 2051 | s = SeqSort(IntSort()) |
| 2052 | assert isinstance(s, SeqSortRef) |
| 2053 | |
| 2054 | def test_seq_sort_char_is_string(self): |
| 2055 | """SeqSort(CharSort()) returns StringSort.""" |