public virtual void  TestFieldSortCustomSearcher()
 {
     // log("Run testFieldSortCustomSearcher");
     // define the sort criteria
     Sort custSort = new Sort(new SortField("publicationDate_", SortField.STRING), SortField.FIELD_SCORE);
     Searcher searcher = new CustomSearcher(this, index, 2);
     // search and check hits
     MatchHits(searcher, custSort);
 }