abc' contains 'bc'.
(self, kernel)
| 1676 | assert _try_prove(claim) |
| 1677 | |
| 1678 | def test_contains_ground(self, kernel): |
| 1679 | """'abc' contains 'bc'.""" |
| 1680 | claim = Contains(StringVal("abc"), StringVal("bc")) |
| 1681 | assert _try_prove(claim) |
| 1682 | |
| 1683 | def test_string_length_ground(self, kernel): |
| 1684 | """len('hello') == len('world').""" |
nothing calls this directly
no test coverage detected