Ejemplo n.º 1
0
 public function testTrim3()
 {
     $s = new StringObject('\\ a b');
     $s->trim('\\');
     $this->assertSame(' a b', $s->val());
 }