new HttpSolrServer("http://localhost:8080/solr"), null), null);
}
@Test
public void testInitRepository() {
repository = new SimpleSolrRepository<ExampleSolrBean, String>(new SolrTemplate(new HttpSolrServer(
"http://localhost:8080/solr"), null), ExampleSolrBean.class);
Assert.assertEquals(ExampleSolrBean.class, repository.getEntityClass());
}