/**
  * @test
  */
 public function setValueWithoudNamedParameterQuotesIdentifierAndDelegatesToConcreteQueryBuilder()
 {
     $this->connection->quoteIdentifier('aField')->shouldBeCalled()->willReturnArgument(0);
     $this->concreteQueryBuilder->setValue('aField', 'aValue')->shouldBeCalled()->willReturn($this->subject);
     $this->subject->setValue('aField', 'aValue', false);
 }