PHPUnit_Framework_Assert::countOf PHP Méthode

countOf() public static méthode

Returns a PHPUnit_Framework_Constraint_Count matcher object.
public static countOf ( integer $count ) : PHPUnit_Framework_Constraint_Count
$count integer
Résultat PHPUnit_Framework_Constraint_Count
    public static function countOf($count)
    {
        return new PHPUnit_Framework_Constraint_Count($count);
    }
PHPUnit_Framework_Assert