Вход Регистрация
Файл: gapps/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php
Строк: 44
<?php
namespace HamcrestCore;

/*
 Copyright (c) 2009 hamcrest.org
 */
use HamcrestDescription;
use 
HamcrestFeatureMatcher;
use 
HamcrestMatcher;
use 
HamcrestUtil;

/**
 * Matches if array size satisfies a nested matcher.
 */
class HasToString extends FeatureMatcher
{

    public function 
__construct(Matcher $toStringMatcher)
    {
        
parent::__construct(
            
self::TYPE_OBJECT,
            
null,
            
$toStringMatcher,
            
'an object with toString()',
            
'toString()'
        
);
    }

    public function 
matchesSafelyWithDiagnosticDescription($actualDescription $mismatchDescription)
    {
        if (
method_exists($actual'toString') || method_exists($actual'__toString')) {
            return 
parent::matchesSafelyWithDiagnosticDescription($actual$mismatchDescription);
        }

        return 
false;
    }

    protected function 
featureValueOf($actual)
    {
        if (
method_exists($actual'toString')) {
            return 
$actual->toString();
        }

        return (string) 
$actual;
    }

    
/**
     * Does array size satisfy a given matcher?
     *
     * @factory
     */
    
public static function hasToString($matcher)
    {
        return new 
self(Util::wrapValueWithIsEqual($matcher));
    }
}
Онлайн: 0
Реклама