getDependencies() public method

플러그인의 의존성정보를 조회한다.
public getDependencies ( ) : string[]
return string[]
 /**
  * @depends testConstruct
  *
  * @param \Xpressengine\Plugin\PluginEntity $entity
  */
 public function testGetDependencies($entity)
 {
     $collection = Mockery::mock('\\Xpressengine\\Plugin\\PluginCollection');
     $collection->shouldReceive('get')->withArgs(['ncenter'])->once()->andReturnNull();
     $entity->setCollection($collection);
     $this->assertEmpty($entity->getDependencies());
 }