Beispiel #1
0
 public function testNotes()
 {
     $this->object->setLoadState(KVDthes_Term::LS_NOTES);
     $this->object->setLoadState(KVDthes_Term::LS_REL);
     $this->object->setLoadState(KVDthes_Term::LS_MATCH);
     $this->object->setScopeNote('SN');
     $this->object->setHistoryNote('HN');
     $this->object->setIndexingNote('IN');
     $this->object->setSourceNote('SoN');
     $this->assertEquals('SN', $this->object->getScopeNote());
     $this->assertEquals('HN', $this->object->getHistoryNote());
     $this->assertEquals('IN', $this->object->getIndexingNote());
     $this->assertEquals('SoN', $this->object->getSourceNote());
 }