public function testInheritanceOverrideNoDocblock()
 {
     $reader = new ControllerMethodReflector();
     $reader->reflect('OC\\AppFramework\\Utility\\EndController', 'test3');
     $this->assertFalse($reader->hasAnnotation('Annotation'));
 }
 public function testReflectParameters2()
 {
     $reader = new ControllerMethodReflector();
     $reader->reflect('\\OC\\AppFramework\\Utility\\ControllerMethodReflectorTest', 'arguments2');
     $this->assertEquals(array('arg' => null), $reader->getParameters());
 }