Ejemplo n.º 1
0
 public function testReverse()
 {
     $s = new StringObject('ABC');
     $s->reverse();
     $this->assertSame('CBA', $s->val());
 }