@Test(expected = UnsupportedOperationException.class)
 public void Ends_With_Ignore_Case_Phrase_Does_Not_Find_Results() throws Exception {
   testQuery(title.endsWithIgnoreCase("sic Par"), "+title:*sic* +title:*par", 0);
 }
 @Test(expected = UnsupportedOperationException.class)
 public void Ends_With_Ignore_Case_Phrase() throws Exception {
   testQuery(title.endsWithIgnoreCase("sic Park"), "+title:*sic* +title:*park", 1);
 }