setBoostTerms() public method

Set boost terms.
public setBoostTerms ( boolean $boostTerms )
$boostTerms boolean
 /**
  * @group unit
  */
 public function testSetBoostTerms()
 {
     $query = new MoreLikeThis();
     $boost = false;
     $query->setBoostTerms($boost);
     $this->assertEquals($boost, $query->getParam('boost_terms'));
 }