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