/**
  * testGetAssigndWhenSkinNotExists
  *
  * @expectedException \Xpressengine\Skin\Exceptions\SkinNotFoundException
  */
 public function testGetAssigndWhenSkinNotExists()
 {
     $key = 'noskin';
     /** @var Mockery\MockInterface $store */
     $store = $this->getStore();
     $store->shouldReceive('getSelectedSkin')->withArgs([$key, 'desktop'])->andReturnNull();
     $store->shouldReceive('getConfigs')->withArgs([$key, 'noskin'])->andReturnNull();
     $this->handler->setStore($store);
     $skinObj = $this->handler->getAssigned($key, null);
 }