hasExactMatch() public method

Return whether there is an exact match.
public hasExactMatch ( ) : boolean
return boolean
 /**
  * Test hasExactMatch() method
  */
 public function testHasNotExactMatch()
 {
     $text_finder = new Finder('banana', ['apple', 'kiwi']);
     $this->assertFalse($text_finder->hasExactMatch());
 }