(self)
| 1915 | """Test sort construction and checking.""" |
| 1916 | |
| 1917 | def test_sort_equality(self): |
| 1918 | assert IntSort() == IntSort() |
| 1919 | assert BoolSort() == BoolSort() |
| 1920 | assert IntSort() != BoolSort() |
| 1921 | assert BitVecSort(8) == BitVecSort(8) |
| 1922 | assert BitVecSort(8) != BitVecSort(16) |
| 1923 | |
| 1924 | def test_sort_repr(self): |
| 1925 | assert repr(IntSort()) == "Int" |
nothing calls this directly
no test coverage detected