Package com.aonaware.services.webservices

Examples of com.aonaware.services.webservices.Dictionary


   * @param word word to search.
   */
  @Test(dataProvider="InputData")
  public void test(Object[][] dictionaryAndStrategy, String word)
  {
    Dictionary dictionary = (Dictionary)dictionaryAndStrategy[0][0];
    Strategy strategy = (Strategy)dictionaryAndStrategy[0][1];
   
    ArrayOfDictionaryWord array = dictServiceSoap.matchInDict(dictionary.getId(), word, strategy.getId());
    Assert.assertTrue(checkWordExistenceInTheDictionaryUsingSpecStrategy(dictionary, strategy, word, array),
              "The word " + word + " doesn't exists in " + dictionary.getName() +
              " dictionary. Search was performed using "+ strategy.getDescription() + " strategy.");
  }
View Full Code Here

TOP

Related Classes of com.aonaware.services.webservices.Dictionary

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.