getSearchIndex() public method

Returns the searchindex
public getSearchIndex ( ) : mixed
return mixed
コード例 #1
0
ファイル: LookupTest.php プロジェクト: exeu/apai-io
 public function testGetSearchIndex()
 {
     $lookup = new Lookup();
     $this->assertEquals(null, $lookup->getSearchIndex());
     $lookup->setSearchIndex('Appliances');
     $this->assertEquals('Appliances', $lookup->getSearchIndex());
 }