/**
  * @test
  * @return void
  */
 public function getHasQueryReturnsTrueIfEndDateSet()
 {
     $this->subject->setEndDate(new \DateTime());
     $this->assertEquals(true, $this->subject->getHasQuery());
 }