~tcuthbert/wordpress/openstack-objectstorage-k8s

« back to all changes in this revision

Viewing changes to vendor/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/*
 
3
 * This file is part of PHPUnit.
 
4
 *
 
5
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 
6
 *
 
7
 * For the full copyright and license information, please view the LICENSE
 
8
 * file that was distributed with this source code.
 
9
 */
 
10
 
 
11
/**
 
12
 * Constraint that asserts that the class it is evaluated for has a given
 
13
 * static attribute.
 
14
 *
 
15
 * The attribute name is passed in the constructor.
 
16
 *
 
17
 * @package    PHPUnit
 
18
 * @subpackage Framework_Constraint
 
19
 * @author     Sebastian Bergmann <sebastian@phpunit.de>
 
20
 * @author     Bernhard Schussek <bschussek@2bepublished.at>
 
21
 * @copyright  Sebastian Bergmann <sebastian@phpunit.de>
 
22
 * @license    http://www.opensource.org/licenses/BSD-3-Clause  The BSD 3-Clause License
 
23
 * @link       http://www.phpunit.de/
 
24
 * @since      Class available since Release 3.1.0
 
25
 */
 
26
class PHPUnit_Framework_Constraint_ClassHasStaticAttribute extends PHPUnit_Framework_Constraint_ClassHasAttribute
 
27
{
 
28
    /**
 
29
     * Evaluates the constraint for parameter $other. Returns true if the
 
30
     * constraint is met, false otherwise.
 
31
     *
 
32
     * @param  mixed $other Value or object to evaluate.
 
33
     * @return bool
 
34
     */
 
35
    protected function matches($other)
 
36
    {
 
37
        $class = new ReflectionClass($other);
 
38
 
 
39
        if ($class->hasProperty($this->attributeName)) {
 
40
            $attribute = $class->getProperty($this->attributeName);
 
41
 
 
42
            return $attribute->isStatic();
 
43
        } else {
 
44
            return false;
 
45
        }
 
46
    }
 
47
 
 
48
    /**
 
49
     * Returns a string representation of the constraint.
 
50
     *
 
51
     * @return string
 
52
     * @since  Method available since Release 3.3.0
 
53
     */
 
54
    public function toString()
 
55
    {
 
56
        return sprintf(
 
57
            'has static attribute "%s"',
 
58
            $this->attributeName
 
59
        );
 
60
    }
 
61
}