コード例 #1
0
ファイル: TextTest.php プロジェクト: bencalie/Ciconia
 public function testCase()
 {
     $text = new Text('AbCd');
     $this->assertEquals('abcd', (string) $text->lower());
     $this->assertEquals('ABCD', (string) $text->upper());
 }