getExtractor() public method

Getter for this service's extractor
public getExtractor ( ) : AppserverIo\Appserver\Core\Interfaces\ExtractorInterface | null
return AppserverIo\Appserver\Core\Interfaces\ExtractorInterface | null
Example #1
0
 /**
  * Tests if we are able to inject our extractor
  *
  * @return null
  */
 public function testInjectExtractor()
 {
     $this->appService->injectExtractor($this->getMock('\\AppserverIo\\Appserver\\Core\\Interfaces\\ExtractorInterface'));
     $this->assertInstanceOf('\\PHPUnit_Framework_MockObject_MockObject', $this->appService->getExtractor());
 }