コード例 #1
0
ファイル: IsArray.php プロジェクト: zhangjingli35/hamcrest
 public function describeTo(Hamcrest_Description $description)
 {
     $description->appendList($this->descriptionStart(), $this->descriptionSeparator(), $this->descriptionEnd(), $this->_elementMatchers);
 }
コード例 #2
0
ファイル: AllOf.php プロジェクト: zhangjingli35/hamcrest
 public function describeTo(Hamcrest_Description $description)
 {
     $description->appendList('(', ' and ', ')', $this->_matchers);
 }
コード例 #3
0
 public function describeTo(Hamcrest_Description $description)
 {
     $description->appendList('[', ', ', ']', $this->_elementMatchers);
 }
コード例 #4
0
 public function describeToWithOperator(Hamcrest_Description $description, $operator)
 {
     $description->appendList('(', ' ' . $operator . ' ', ')', $this->_matchers);
 }