/**
  * @expectedException \Robin\Connect\SEOShop\Exceptions\PropertyDoesNotExistsException
  */
 public function testAccessingNotExistingPropertyResultsInException()
 {
     $model = $this->getModel("customer");
     $client = Mockery::mock(Retriever::class);
     $customer = new Customer($client);
     $customer->makeFromJson($model);
     $customer->foo;
 }