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