Ejemplo n.º 1
0
 public function testPadBoth()
 {
     $s = new StringObject('A');
     $s->padBoth(4, 'B');
     $this->assertSame('BABB', $s->val());
 }