/**
  * @test
  */
 public function andHavingDelegatesToConcreteQueryBuilder()
 {
     $this->concreteQueryBuilder->andHaving('uid=1', 'type=9')->shouldBeCalled()->willReturn($this->subject);
     $this->subject->andHaving('uid=1', 'type=9');
 }