* When receiving an event for a different table than the one specified in the IndexerConf, the Indexer should not
* interact with HBase or Solr.
*/
@Test
public void testNonmatchedTable() {
IndexerConf conf = new IndexerConfBuilder().table(TABLE_A).build();
Indexer indexer = Indexer.createIndexer("index name", conf, TABLE_A, null, tablePool, null, solrDocumentWriter);
IndexingEventListener indexingEventListener = new IndexingEventListener(indexer, TABLE_A, false);
SepEvent event = new SepEvent(Bytes.toBytes(TABLE_B), null, null, null);