Пример #1
0
 /**
  * Test if the `getProperty` method throws an exception if no property with the given
  * name exists in class.
  *
  * @expectedException \ReflectionException
  */
 public function testGetPropertyThrowsException()
 {
     $class = new ReflectionClass(self::FIXTURE_NS . '\\ClassWithProperties');
     $class->getProperty('baz');
 }