@Test
 public void Lt_Not_In_Range_Because_Equal() throws Exception {
   testQuery(rating.lt("Good"), "rating:{* TO good}", 0);
 }
 @Test
 public void Lt() throws Exception {
   testQuery(rating.lt("Superb"), "rating:{* TO superb}", 1);
 }