Ejemplo n.º 1
0
 public function testCaseFirstUpper()
 {
     $s = new StringObject('šAH Mat');
     $s->caseFirstUpper();
     $this->assertSame('Šah mat', $s->val());
 }