コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testReplaceString()
 {
     $text = new Text('foobar');
     $this->assertEquals('fooBAR', $text->replaceString('bar', 'BAR'));
 }