예제 #1
0
파일: TextTest.php 프로젝트: phootwork/lang
 public function testMutators()
 {
     $str = new Text('it');
     $this->assertEquals('let it', $str->prepend('let '));
     $this->assertEquals('let it', $str->prepend(new Text('let ')));
     $this->assertEquals('it go', $str->append(' go'));
     $this->assertEquals('it go', $str->append(new Text(' go')));
 }