(self, kernel)
| 720 | """Ground string proofs.""" |
| 721 | |
| 722 | def test_concat(self, kernel): |
| 723 | assert _try_prove( |
| 724 | StrConcat(StringVal("hello"), StringVal(" world")) == StringVal("hello world") |
| 725 | ) |
| 726 | |
| 727 | def test_length(self, kernel): |
| 728 | assert _try_prove(Length(StringVal("hello")) == IntVal(5)) |
nothing calls this directly
no test coverage detected