Example #1
0
 public function testSearchIndex()
 {
     $item = new Item();
     $item->setBody('<a>somEth&auml;ng</a>');
     $item->setUrl('http://link');
     $item->setAuthor('&auml;uthor');
     $item->setTitle('<a>t&auml;tle</a>');
     $item->generateSearchIndex();
     $expected = 'somethängäuthortätlehttp://link';
     $this->assertEquals($expected, $item->getSearchIndex());
 }