コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testDirectAccess()
 {
     $text = new Text('12345');
     $this->assertEquals('foobar', $text->setText('foobar')->getText());
     $this->assertInternalType('string', $text->getText());
 }