AppserverIo\Appserver\Core\Api\AppServiceTest::testInjectExtractor PHP 메소드

testInjectExtractor() 공개 메소드

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