コード例 #1
0
 /**
  * @test
  * @return void
  */
 public function getFullThemePath()
 {
     $areaCode = 'frontend';
     $this->appState->expects($this->once())->method('getAreaCode')->willReturn($areaCode);
     $path = 'some/path';
     $this->_model->setThemePath($path);
     $this->assertEquals($areaCode . Theme::PATH_SEPARATOR . $path, $this->_model->getFullPath());
 }