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.");
}