Esempio n. 1
0
 public function testCountWithType()
 {
     $this->assertEquals($this->object->count(KVDthes_Match::MATCH_RM), 0);
     $this->object->addMatch($this->match);
     $this->assertEquals($this->object->count(KVDthes_Match::MATCH_RM), 1);
     $this->assertEquals($this->object->count(KVDthes_Match::MATCH_NM), 0);
 }
Esempio n. 2
0
 /**
  * hasMatches
  *
  * @param  string  $type   Een constante uit {@link KVDthes_Match} of null
  * @return boolean Geeft aan of een term matches heeft in het algemeen of van een bepaald type.
  */
 public function hasMatches($type = null)
 {
     $this->checkMatches();
     return $this->matches->count($type) > 0;
 }