/**
  * @test
  */
 public function setCodePathSetsCodePath()
 {
     $path = t3lib_extMgm::extPath('phpunit');
     $this->fixture->setCodePath($path);
     $this->assertSame($path, $this->fixture->getCodePath());
 }
Exemple #2
0
 /**
  * @test
  */
 public function setCodePathSetsCodePath()
 {
     $path = ExtensionManagementUtility::extPath('phpunit');
     $this->subject->setCodePath($path);
     self::assertSame($path, $this->subject->getCodePath());
 }