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