/**
  * @test
  */
 public function isNotNullQuotesIdentifier()
 {
     $result = $this->subject->isNotNull('aField');
     $this->connectionProphet->quoteIdentifier('aField')->shouldHaveBeenCalled();
     $this->assertSame('aField IS NOT NULL', $result);
 }