(self, kernel)
| 728 | assert _try_prove(Length(StringVal("hello")) == IntVal(5)) |
| 729 | |
| 730 | def test_length_empty(self, kernel): |
| 731 | assert _try_prove(Length(StringVal("")) == IntVal(0)) |
| 732 | |
| 733 | def test_length_concat(self, kernel): |
| 734 | """len(a ++ b) = len(a) + len(b) for ground strings.""" |
nothing calls this directly
no test coverage detected