Exemplo n.º 1
0
 /**
  * @test
  */
 public function setLocation()
 {
     $value = new Location();
     $value->setTitle('Location1 1');
     $this->subject->setLocation($value);
     $this->assertEquals($value, $this->subject->getLocation());
 }
Exemplo n.º 2
0
 /**
  * @test
  */
 public function setLink()
 {
     $value = 'montagmorgen.at';
     $this->subject->setLink($value);
     $this->assertEquals($value, $this->subject->getLink());
 }