Ejemplo n.º 1
0
 public function testPadLeft()
 {
     $s = new StringObject('A');
     $s->padLeft(3, 'B');
     $this->assertSame('BBA', $s->val());
 }