* finish task #3099.

This commit is contained in:
wangyidong
2017-08-17 16:29:15 +08:00
parent 8d909478e2
commit 16af1cd290
+10 -1
View File
@@ -1456,7 +1456,16 @@ class testcase extends control
}
else
{
$steps = explode("\n", $cellValue);
$steps = $cellValue;
if(strpos($cellValue, "\n"))
{
$steps = explode("\n", $cellValue);
}
elseif(strpos($cellValue, "\r"))
{
$steps = explode("\r", $cellValue);
}
$stepKey = str_replace('step', '', strtolower($field));
$caseStep = array();