Ejemplo n.º 1
0
 public function testRepeat()
 {
     $s = new StringObject('ABC');
     $s->repeat(3);
     $this->assertSame('ABCABCABC', $s->val());
 }