(self, kernel)
| 755 | assert _try_prove(SuffixOf(StringVal("abc"), StringVal("abc"))) |
| 756 | |
| 757 | def test_contains(self, kernel): |
| 758 | assert _try_prove(Contains(StringVal("abcdef"), StringVal("cde"))) |
| 759 | |
| 760 | def test_contains_empty(self, kernel): |
| 761 | assert _try_prove(Contains(StringVal("abc"), StringVal(""))) |
nothing calls this directly
no test coverage detected