/**
  * @test
  */
 public function resetQueryPartsDelegatesToConcreteQueryBuilder()
 {
     $this->concreteQueryBuilder->resetQueryParts(['select', 'from'])->shouldBeCalled()->willReturn($this->subject);
     $this->subject->resetQueryParts(['select', 'from']);
 }