예제 #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());
 }