Example #1
0
 /**
  * @test
  */
 public function setRootPath_success()
 {
     $this->target->setRootPath('.');
     $this->assertEquals(dirname(__DIR__) . DIRECTORY_SEPARATOR, $this->target->getRootPath());
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function setRootPath($path = '.')
 {
     $this->context->setRootPath($path);
     return $this;
 }