Package org.apache.lucene.search.tests

Source Code of org.apache.lucene.search.tests.PwaBoostOlderTest

package org.apache.lucene.search.tests;

import org.apache.lucene.search.features.temporal.PwaBoostOlder;

import junit.framework.*;


/**
* Test BoostNewer
* @author Miguel Costa
*/
public class PwaBoostOlderTest extends TestCase {

  protected void setUp() throws Exception {
  }

  protected void tearDown() throws Exception {
  }

  public void testScore() {               
    long maxTimestamp=100;
    long minTimestamp=0
   
    for (long i=0;i<10;i++) {
      PwaBoostOlder ranker=new PwaBoostOlder(i,maxTimestamp,minTimestamp);
      System.out.println(i+" "+ranker.score())
    }
    for (long i=10;i<=100;i+=10) {
      PwaBoostOlder ranker=new PwaBoostOlder(i,maxTimestamp,minTimestamp);
      System.out.println(i+" "+ranker.score())
    }
   
    assertTrue(true);
  }   
}
TOP

Related Classes of org.apache.lucene.search.tests.PwaBoostOlderTest

TOP
Copyright © 2018 www.massapi.com. 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.