/**
  * Check if application path can be set
  */
 public function testApplicationPath()
 {
     $applicationPath = '/tmp';
     $docsCreate = new DocsCreateCommand();
     $docsCreate->setApplicationPath($applicationPath);
     $this->assertEquals($applicationPath, $docsCreate->getApplicationPath());
 }