public function testGetPropertyExemptionList()
 {
     $instance = new SearchTable($this->store);
     $instance->setPropertyExemptionList(array('_TEXT', 'fo oo'));
     $this->assertEquals(array('_TEXT', 'fo_oo'), $instance->getPropertyExemptionList());
 }