(self)
| 3299 | assert ArraySort(IntSort(), IntSort()).kind() == 5 |
| 3300 | |
| 3301 | def test_sort_kind_string(self): |
| 3302 | assert StringSort().kind() == 7 |
| 3303 | |
| 3304 | def test_sort_kind_uninterpreted(self): |
| 3305 | T = DeclareSort("T") |
nothing calls this directly
no test coverage detected