(self, kernel)
| 807 | assert len(Tactic("simp [String.append_assoc]").apply(g)) == 0 |
| 808 | |
| 809 | def test_empty_concat_left(self, kernel): |
| 810 | x = String("x") |
| 811 | g = Goal() |
| 812 | g.add(StrConcat(StringVal(""), x) == x) |
| 813 | assert len(Tactic("simp").apply(g)) == 0 |
| 814 | |
| 815 | def test_empty_concat_right(self, kernel): |
| 816 | x = String("x") |