(self, kernel)
| 793 | assert _try_prove(IntToStr(IntVal(42)) == StringVal("42")) |
| 794 | |
| 795 | def test_substring(self, kernel): |
| 796 | assert _try_prove(SubString(StringVal("abcdef"), IntVal(2), IntVal(3)) == StringVal("cde")) |
| 797 | |
| 798 | |
| 799 | class TestStringUniversal: |
nothing calls this directly
no test coverage detected