Package com.google.refine.org.deri.reconcile.model

Examples of com.google.refine.org.deri.reconcile.model.ReconciliationCandidate


  public void reconcileTestWithEnoughResults()throws Exception{
    ImmutableList<String> empty = ImmutableList.of();
    List<ReconciliationCandidate> results = new ArrayList<ReconciliationCandidate>();
    //prepare enough results
    for(int i=0;i<limit;i++){
      results.add(new ReconciliationCandidate(String.valueOf(i), "", null, 0, false));
    }
   
    when(mockEndpoint.reconcileEntities(request, empty, 0.9)).thenReturn(results);
    /*
     * testing
 
View Full Code Here

TOP

Related Classes of com.google.refine.org.deri.reconcile.model.ReconciliationCandidate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.