setStopWords() public method

Set stop words.
public setStopWords ( array $stopWords )
$stopWords array
 /**
  * @group unit
  */
 public function testSetStopWords()
 {
     $query = new MoreLikeThis();
     $stopWords = array('no', 'yes', 'test');
     $query->setStopWords($stopWords);
     $this->assertEquals($stopWords, $query->getParam('stop_words'));
 }