len('hello') == len('world').
(self, kernel)
| 1681 | assert _try_prove(claim) |
| 1682 | |
| 1683 | def test_string_length_ground(self, kernel): |
| 1684 | """len('hello') == len('world').""" |
| 1685 | claim = Length(StringVal("hello")) == Length(StringVal("world")) |
| 1686 | assert _try_prove(claim) |
| 1687 | |
| 1688 | def test_string_concat_ground(self, kernel): |
| 1689 | """'ab' ++ 'cd' == 'abcd'.""" |
nothing calls this directly
no test coverage detected