Esempio n. 1
0
 public function testCase()
 {
     $text = new Text('AbCd');
     $this->assertEquals('abcd', (string) $text->lower());
     $this->assertEquals('ABCD', (string) $text->upper());
 }