/**
  * @test
  * @return void
  */
 public function getQueryLimitReturnsExpectedQueryLimit()
 {
     $this->subject->setQueryLimit(10);
     $this->assertSame(10, $this->subject->getQueryLimit());
 }