session.execute(tests[i]);
String result = state.datapop().stringValue();
if(tests[i+1].equals(result.trim())){
state.debug("test: << "+tests[i]+" >> expected: "+tests[i+1]+" --passed\n");
}else{
state.debug("test: << "+tests[i]+" >> expected: "+tests[i+1]+" result:"+result+" --FAILED\n");
}
state.debug("\n");
}catch(Exception e){
state.error(" Exception Thrown:\n");
state.error("test: "+tests[i]+"expected: "+tests[i+1]+" result: Exception thrown --FAILED\n");