@Test
 public void testQueryWithHighlightMultipleFields() throws Exception {
   SolrQueryMethod method =
       getQueryMethodByName("findByTextHighlightMultipleFields", String.class);
   Assert.assertThat(
       Arrays.asList("field_1", "field_2", "field_3"),
       IsEqual.equalTo(method.getHighlightFieldNames()));
 }
 @Test
 public void testQueryWithEmptyHighlight() throws Exception {
   SolrQueryMethod method = getQueryMethodByName("findByTextLike", String.class);
   Assert.assertTrue(method.isHighlightQuery());
   Assert.assertNull(method.getHighlightFormatter());
   Assert.assertNull(method.getHighlightQuery());
   Assert.assertNull(method.getHighlighSnipplets());
   Assert.assertThat(method.getHighlightFieldNames(), IsEmptyCollection.empty());
   Assert.assertNull(method.getHighlightFragsize());
   Assert.assertNull(method.getHighlightPrefix());
   Assert.assertNull(method.getHighlightPostfix());
 }