我想编写一个测试来确保变量受到保护。那可能吗?这就是我得到的。
/**
* @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
答案 0 :(得分:3)
这可能是对反思的好用。
http://php.net/manual/en/reflectionclass.getproperties.php
通过使用过滤器,您可以检索受保护的属性并检查它是否存在。
应该相当简单。
答案 1 :(得分:3)
$prop = new ReflectionProperty(get_class($object), 'propname'));
$this->assertTrue($prop->isProtected());