/**
  * @test
  * @return void
  */
 public function getLocationReturnsExpectedLocation()
 {
     $location = new \DERHANSEN\SfEventMgt\Domain\Model\Location();
     $this->subject->setLocation($location);
     $this->assertSame($location, $this->subject->getLocation());
 }