*/
public String verify(String unique, Report report, File environment,
File assertion, File key, File resource) throws KeyNoteCLProcessCreationException, KeyNoteCLException, InterruptedException, IOException, RetValStringNotParsableException{
String returnValues = keynoteCommon.getReturnValueString(unique, report, resource);
if(!keynoteCommon.isRetValString(returnValues)){
throw new RetValStringNotParsableException(unique, report, String.format(ExceptionString.RETVALSTRINGPARSEEXCEPTION.getExceptionString(), returnValues));
}
if(!environment.exists()){
report.reportErrorLog(unique, String.format(ExceptionString.FILENOTFOUND.getExceptionString(), environment.getAbsolutePath()));
throw new FileNotFoundException();