1

我想编写一个测试以确保变量受到保护。那可能吗?这就是我得到的。

/**
 * @expectedException       Fatal error
 * @expectedExceptionMessage Cannot access protected property
 */

public function testCannotAccessProtectedProperty() {
    $this->assertEquals($this->object->variableiwanttotest[0], $value);
}

这是错误消息

PHP Fatal error:  Cannot access protected property Object::variableiwanttotest in /Users/confidential/ObjectTest.php on line 25
4

2 回答 2

3

这可能是反射的一个很好的用途。

http://php.net/manual/en/reflectionclass.getproperties.php

通过使用过滤器,您可以检索受保护的属性并检查它是否存在。

做起来应该相当简单。

于 2013-01-25T19:52:29.483 回答
3
$prop = new ReflectionProperty(get_class($object), 'propname'));
$this->assertTrue($prop->isProtected());
于 2013-01-25T19:54:02.070 回答