Package com.apps.services

Examples of com.apps.services.SaveonbookService.search()


  public void test() {
   
    SaveonbookService sss = SaveonBookServiceFactory.getSaveonbookService();
    BookInformation testbi = new BookInformation("Discrete Mathematics W/Applications 4/E", "Required", "EPP", "9780495391326");

    List<SaveonBookModel> sbml1 =  sss.search(testbi);
    List<SaveonBookModel> sbml2 =  sss.titleSearch("Discrete Mathematics with Applications");
   
    assertTrue(sbml2.get(0).getCourse().equals(">CPSC121"));
   
    assertTrue(sss.getOptimizedTitle(testbi).equals("Discrete Mathematics with Applications"));
View Full Code Here

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.