예제 #1
0
파일: Issue.php 프로젝트: Hywan/String
 public function case_github_26()
 {
     $this->when($result = LUT::toCode(chr(160)))->then->integer($result)->isEqualTo(0xa0);
 }
예제 #2
0
파일: String.php 프로젝트: Hywan/String
 public function case_copy()
 {
     $this->given($string = new LUT('foo'))->when($result = $string->copy())->then->object($result)->isEqualTo($string);
 }