public function testBindToSphinxWillIgnoreQueryBuilderIfQuerySet()
 {
     $builder = $this->object->createQueryBuilder();
     $builder->in()->whereField()->contains('bob alan derek');
     $this->object->setQuery('sue alice colby');
     $this->object->bindToSphinx($this->I->getSphinxClientMock());
     $this->assertNotEquals('(bob alan derek)', $this->object->getQuery());
 }