/**
  * @test
  */
 public function valuesWithoutNamedParametersQuotesIdentifiersAndDelegatesToConcreteQueryBuilder()
 {
     $this->connection->quoteColumnValuePairs(['aField' => 1, 'aValue' => 2])->shouldBeCalled()->willReturnArgument(0);
     $this->concreteQueryBuilder->values(['aField' => 1, 'aValue' => 2])->shouldBeCalled()->willReturn($this->subject);
     $this->subject->values(['aField' => 1, 'aValue' => 2], false);
 }