/**
  * @test
  */
 public function setEmailForStringSetsEmail()
 {
     $this->fixture->setEmail('Conceived at T3CON10');
     $this->assertSame('Conceived at T3CON10', $this->fixture->getEmail());
 }
 /**
  * @param Article $article
  * Initialisiert Item mit Artikeldaten
  */
 protected function initializeFrom(\Bjr\BjrLend\Domain\Model\Article $article)
 {
     $this->setArticleUid($article->getUid());
     $this->setTitle($article->getTitle());
     $this->setDescription($article->getDescription());
     $this->setShortDescription($article->getShortDescription());
     $this->setFee($article->getFee());
     $this->setOrganization($article->getOrganization());
     $this->setCategory($article->getCategory());
     //$this->setImage($article->getImage());
     $this->setImage($article->getUrlForImage());
     $this->setEmail($article->getEmail());
     $this->setPhone($article->getPhone());
     $this->setLendConditions($article->getLendConditions());
 }