Package recommender.impl.test.util

Examples of recommender.impl.test.util.DummyRecommendationEntity


   * @throws Exception
   */
  @Test
  public void testMultiThreading() throws Exception {
    // query recommender
    multi.getRecommendationsForUser("", new DummyRecommendationEntity());
   
    // test
    assertEquals("Not all recommenders delivered results", NROFRECOS, selector.getRecoCounter());
  }
View Full Code Here


    multi.addRecommender(reco);
    reco.setWait(QUERY_TIMEOUT * 2);
    reco.setId(Integer.valueOf(1000));
   
    // query recommender
    multi.getRecommendationsForUser("", new DummyRecommendationEntity());
   
    // test
    assertEquals("Not all recommenders delivered results", NROFRECOS, selector.getRecoCounter());
  }
View Full Code Here

TOP

Related Classes of recommender.impl.test.util.DummyRecommendationEntity

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.