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