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