def test_StrOp_concat(): s: str s = '3' + '4' s = "a " + "test" s = 'test' + 'test' + 'test'