public static function xmlElementToRows($test_id, \SimpleXMLElement
$element) { $records =
[];
$test_cases =
static::
findTestCases($element);
foreach ($test_cases as $test_case) { $records[] =
static::
convertTestCaseToSimpletestRow($test_id,
$test_case);
} return $records;
} /**
* Finds all test cases recursively from a test suite list.
*
* @param \SimpleXMLElement $element
* The PHPUnit xml to search for test cases.
* @param \SimpleXMLElement $parent
* (Optional) The parent of the current element. Defaults to NULL.
*
* @return array
* A list of all test cases.
*
* @internal
*/