ApaiIO\Test\Operations\Types\LookupTest::testGetSearchIndex PHP 메소드

testGetSearchIndex() 공개 메소드

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