AppserverIo\Appserver\Core\Api\AppServiceTest::testInjectExtractor PHP Method

testInjectExtractor() public method

Tests if we are able to inject our extractor
public testInjectExtractor ( ) : null
return null
    public function testInjectExtractor()
    {
        $this->appService->injectExtractor($this->getMock('\\AppserverIo\\Appserver\\Core\\Interfaces\\ExtractorInterface'));
        $this->assertInstanceOf('\\PHPUnit_Framework_MockObject_MockObject', $this->appService->getExtractor());
    }