PHPUnit_Framework_Assert::countOf PHP Метод

countOf() публичный статический Метод

Returns a PHPUnit_Framework_Constraint_Count matcher object.
public static countOf ( integer $count ) : PHPUnit_Framework_Constraint_Count
$count integer
Результат PHPUnit_Framework_Constraint_Count
    public static function countOf($count)
    {
        return new PHPUnit_Framework_Constraint_Count($count);
    }
PHPUnit_Framework_Assert