コード例 #1
0
 public function describeToWithOperator(Description $description, $operator)
 {
     $description->appendList('(', ' ' . $operator . ' ', ')', $this->_matchers);
 }
コード例 #2
0
 public function describeTo(Description $description)
 {
     $description->appendList('[', ', ', ']', $this->_elementMatchers);
 }
コード例 #3
0
 public function describeTo(Description $description)
 {
     $description->appendList('[', ', ', ']', $this->_elementMatchers)->appendText(' in any order');
 }
コード例 #4
0
ファイル: IsArray.php プロジェクト: cruni505/prestomed
 public function describeTo(Description $description)
 {
     $description->appendList($this->descriptionStart(), $this->descriptionSeparator(), $this->descriptionEnd(), $this->_elementMatchers);
 }
コード例 #5
0
ファイル: AllOf.php プロジェクト: ngitimfoyo/Nyari-AppPHP
 public function describeTo(Description $description)
 {
     $description->appendList('(', ' and ', ')', $this->_matchers);
 }