ApaiIO\Test\Operations\Types\LookupTest::testGetSearchIndex PHP Method

testGetSearchIndex() public method

public testGetSearchIndex ( )
    public function testGetSearchIndex()
    {
        $lookup = new Lookup();
        $this->assertEquals(null, $lookup->getSearchIndex());
        $lookup->setSearchIndex('Appliances');
        $this->assertEquals('Appliances', $lookup->getSearchIndex());
    }