(self, kernel)
| 761 | assert _try_prove(Contains(StringVal("abc"), StringVal(""))) |
| 762 | |
| 763 | def test_contains_self(self, kernel): |
| 764 | assert _try_prove(Contains(StringVal("abc"), StringVal("abc"))) |
| 765 | |
| 766 | def test_replace(self, kernel): |
| 767 | assert _try_prove( |
nothing calls this directly
no test coverage detected