/**
  * 
  * Generates a new KalturaTestsFailures object from a given failure file path 
  * @param string $failureFilePath
  */
 public static function generateFromXml($failureFilePath)
 {
     $testsFailures = new KalturaTestCaseFailures();
     $testsFailures->fromXml($failureFilePath);
     return $testsFailures;
 }