Example #1
0
 /**
  * Tests if are able to run through the method
  *
  * @return null
  */
 public function testGetExtractorWithoutDefaultConfiguration()
 {
     // Lets create a mocked configuration which does not know about extractors
     $mockConfig = $this->getMock('\\AppserverIo\\Appserver\\Core\\Api\\Node\\AppserverNode');
     $this->appService->setSystemConfiguration($mockConfig);
     $this->assertNull($this->appService->getExtractor());
 }