(self)
| 1929 | assert repr(StringSort()) == "String" |
| 1930 | |
| 1931 | def test_bv_sort_repr(self): |
| 1932 | assert "8" in repr(BitVecSort(8)) |
| 1933 | |
| 1934 | def test_array_sort(self): |
| 1935 | s = ArraySort(IntSort(), IntSort()) |
nothing calls this directly
no test coverage detected