String src = replaceParam(elem.getAttributeValue("src"));
String test = replaceParam(elem.getAttributeValue("test"));
int indxSearch = src.indexOf(test);
if(indxSearch == -1) {
logger.info("assertContains didn't find " + test + " in the src");
throw new TestCaseException("assertContains didn't find: " + test);
} else {
logger.info("assertContains found " + test + " in the src");
}
//TODO: implement JUnit TestCase - Assert.assertTrue(indxSearch != -1);
}