本文整理汇总了PHP中Hamcrest\Description类的典型用法代码示例。如果您正苦于以下问题:PHP Description类的具体用法?PHP Description怎么用?PHP Description使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Description类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: describeMismatch
public function describeMismatch($item, Description $description)
{
if ($item === null) {
$description->appendText('was null');
} else {
$description->appendText('was ')->appendText(self::getTypeDescription(strtolower(gettype($item))))->appendText(' ')->appendValue($item);
}
}
示例2: describeTo
public function describeTo(Description $description)
{
$description->appendText('a value ')->appendText($this->_comparison($this->_minCompare));
if ($this->_minCompare != $this->_maxCompare) {
$description->appendText(' or ')->appendText($this->_comparison($this->_maxCompare));
}
$description->appendText(' ')->appendValue($this->_value);
}
示例3: matchesWithDiagnosticDescription
protected function matchesWithDiagnosticDescription($item, Description $mismatchDescription)
{
if (!is_object($item)) {
$mismatchDescription->appendText('was ')->appendValue($item);
return false;
}
if (!$item instanceof $this->_theClass) {
$mismatchDescription->appendText('[' . get_class($item) . '] ')->appendValue($item);
return false;
}
return true;
}
示例4: describeTo
public function describeTo(Description $description)
{
$textStart = 0;
while (preg_match(self::ARG_PATTERN, $this->_descriptionTemplate, $matches, PREG_OFFSET_CAPTURE, $textStart)) {
$text = $matches[0][0];
$index = $matches[1][0];
$offset = $matches[0][1];
$description->appendText(substr($this->_descriptionTemplate, $textStart, $offset - $textStart));
$description->appendValue($this->_values[$index]);
$textStart = $offset + strlen($text);
}
if ($textStart < strlen($this->_descriptionTemplate)) {
$description->appendText(substr($this->_descriptionTemplate, $textStart));
}
}
示例5: describe
/**
* Describe the contents of the given <code>list</code> in the given <code>description</code>.
*
* @param array $list The list to describe
* @param Description $description The description to describe to
*/
public static function describe(array $list, Description $description)
{
$counter = 0;
$description->appendText("List with ");
foreach ($list as $item) {
$description->appendText("<")->appendText(null !== $item ? get_class($item) : "null")->appendText(">");
if ($counter === count($list) - 2) {
$description->appendText(" and ");
} else {
if ($counter < count($list) - 2) {
$description->appendText(", ");
}
}
$counter++;
}
}
示例6: describeMismatch
public function describeMismatch($item, Description $description)
{
$value = '';
if (!$this->_not) {
$description->appendText('was not set');
} else {
$property = $this->_property;
if (is_array($item)) {
$value = $item[$property];
} elseif (is_object($item)) {
$value = $item->{$property};
} elseif (is_string($item)) {
$value = $item::${$property};
}
parent::describeMismatch($value, $description);
}
}
示例7: describeTo
public function describeTo(Description $description)
{
$description->appendValue($this->_item);
}
示例8: describeTo
public function describeTo(Description $description)
{
$description->appendText('null');
}
示例9: describeTo
public function describeTo(Description $description)
{
$description->appendDescriptionOf($this->_matcher);
}
示例10: describeTo
public function describeTo(Description $description)
{
$description->appendText($this->_empty ? 'an empty traversable' : 'a non-empty traversable');
}
示例11: describeTo
public function describeTo(Description $description)
{
$description->appendList('[', ', ', ']', $this->_elementMatchers)->appendText(' in any order');
}
示例12: describeTo
public function describeTo(Description $description)
{
$description->appendList('[', ', ', ']', $this->_elementMatchers);
}
示例13: describeMismatchSafely
protected function describeMismatchSafely($item, Description $mismatchDescription)
{
$mismatchDescription->appendText('was ')->appendText($item);
}
示例14: describeTo
public function describeTo(Description $description)
{
$description->appendText('an instance of ')->appendText($this->_theClass);
}
示例15: describeTo
public function describeTo(Description $description)
{
$description->appendText('every item is ')->appendDescriptionOf($this->_matcher);
}