You are here

class PHPUnit_Framework_Constraint_IsType in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/IsType.php \PHPUnit_Framework_Constraint_IsType

Constraint that asserts that the value it is evaluated for is of a specified type.

The expected value is passed in the constructor.

@since Class available since Release 3.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_Constraint_IsType

File

vendor/phpunit/phpunit/src/Framework/Constraint/IsType.php, line 19

View source
class PHPUnit_Framework_Constraint_IsType extends PHPUnit_Framework_Constraint {
  const TYPE_ARRAY = 'array';
  const TYPE_BOOL = 'bool';
  const TYPE_FLOAT = 'float';
  const TYPE_INT = 'int';
  const TYPE_NULL = 'null';
  const TYPE_NUMERIC = 'numeric';
  const TYPE_OBJECT = 'object';
  const TYPE_RESOURCE = 'resource';
  const TYPE_STRING = 'string';
  const TYPE_SCALAR = 'scalar';
  const TYPE_CALLABLE = 'callable';

  /**
   * @var array
   */
  protected $types = array(
    'array' => true,
    'boolean' => true,
    'bool' => true,
    'double' => true,
    'float' => true,
    'integer' => true,
    'int' => true,
    'null' => true,
    'numeric' => true,
    'object' => true,
    'real' => true,
    'resource' => true,
    'string' => true,
    'scalar' => true,
    'callable' => true,
  );

  /**
   * @var string
   */
  protected $type;

  /**
   * @param  string                      $type
   * @throws PHPUnit_Framework_Exception
   */
  public function __construct($type) {
    parent::__construct();
    if (!isset($this->types[$type])) {
      throw new PHPUnit_Framework_Exception(sprintf('Type specified for PHPUnit_Framework_Constraint_IsType <%s> ' . 'is not a valid type.', $type));
    }
    $this->type = $type;
  }

  /**
   * Evaluates the constraint for parameter $other. Returns true if the
   * constraint is met, false otherwise.
   *
   * @param  mixed $other Value or object to evaluate.
   * @return bool
   */
  protected function matches($other) {
    switch ($this->type) {
      case 'numeric':
        return is_numeric($other);
      case 'integer':
      case 'int':
        return is_integer($other);
      case 'double':
      case 'float':
      case 'real':
        return is_float($other);
      case 'string':
        return is_string($other);
      case 'boolean':
      case 'bool':
        return is_bool($other);
      case 'null':
        return is_null($other);
      case 'array':
        return is_array($other);
      case 'object':
        return is_object($other);
      case 'resource':
        return is_resource($other) || is_string(@get_resource_type($other));
      case 'scalar':
        return is_scalar($other);
      case 'callable':
        return is_callable($other);
    }
  }

  /**
   * Returns a string representation of the constraint.
   *
   * @return string
   */
  public function toString() {
    return sprintf('is of type "%s"', $this->type);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_Constraint::$exporter protected property
PHPUnit_Framework_Constraint::additionalFailureDescription protected function Return additional failure description where needed 1
PHPUnit_Framework_Constraint::count public function Counts the number of constraint elements. 6
PHPUnit_Framework_Constraint::evaluate public function Evaluates the constraint for parameter $other 9
PHPUnit_Framework_Constraint::fail protected function Throws an exception for the given compared value and test description
PHPUnit_Framework_Constraint::failureDescription protected function Returns the description of the failure 17
PHPUnit_Framework_Constraint_IsType::$type protected property
PHPUnit_Framework_Constraint_IsType::$types protected property
PHPUnit_Framework_Constraint_IsType::matches protected function Evaluates the constraint for parameter $other. Returns true if the constraint is met, false otherwise. Overrides PHPUnit_Framework_Constraint::matches
PHPUnit_Framework_Constraint_IsType::toString public function Returns a string representation of the constraint. Overrides PHPUnit_Framework_SelfDescribing::toString
PHPUnit_Framework_Constraint_IsType::TYPE_ARRAY constant
PHPUnit_Framework_Constraint_IsType::TYPE_BOOL constant
PHPUnit_Framework_Constraint_IsType::TYPE_CALLABLE constant
PHPUnit_Framework_Constraint_IsType::TYPE_FLOAT constant
PHPUnit_Framework_Constraint_IsType::TYPE_INT constant
PHPUnit_Framework_Constraint_IsType::TYPE_NULL constant
PHPUnit_Framework_Constraint_IsType::TYPE_NUMERIC constant
PHPUnit_Framework_Constraint_IsType::TYPE_OBJECT constant
PHPUnit_Framework_Constraint_IsType::TYPE_RESOURCE constant
PHPUnit_Framework_Constraint_IsType::TYPE_SCALAR constant
PHPUnit_Framework_Constraint_IsType::TYPE_STRING constant
PHPUnit_Framework_Constraint_IsType::__construct public function Overrides PHPUnit_Framework_Constraint::__construct