diff options
author | wei <> | 2006-01-06 04:37:22 +0000 |
---|---|---|
committer | wei <> | 2006-01-06 04:37:22 +0000 |
commit | 3b11f3555426a50664e130148fa37e18b8098e28 (patch) | |
tree | d1bcba66c8d2fc0a7cfbbde92975b9e972fa7aab /tests/FunctionalTests/selenium/php/results.php | |
parent | 2d5b96ba9878ec36df7bb2af3493bb771c85b032 (diff) |
Diffstat (limited to 'tests/FunctionalTests/selenium/php/results.php')
-rw-r--r-- | tests/FunctionalTests/selenium/php/results.php | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/tests/FunctionalTests/selenium/php/results.php b/tests/FunctionalTests/selenium/php/results.php index 2ad9c56b..77dab43b 100644 --- a/tests/FunctionalTests/selenium/php/results.php +++ b/tests/FunctionalTests/selenium/php/results.php @@ -45,9 +45,9 @@ class SeleniumTestResult $case->commands = $test['commands']; for($i = 0; $i < count($case->commands); $i++) { - $trace = $case->commands[$i]['trace']; - $trace = html_entity_decode($trace); - $case->commands[$i]['trace'] = @unserialize($trace); + //$trace = $case->commands[$i]['trace']; + //$trace = html_entity_decode($trace); + //$case->commands[$i]['trace'] = @unserialize($trace); if($case->commands[$i]['result'] == 'failed') { $case->result = 'failed'; @@ -126,33 +126,27 @@ EOD; foreach($test->suites as $suite) { foreach($suite->failures as $error) - $contents .= $this->getErrorMsg($error, $count++); + $contents .= $this->getErrorMsg($suite, $error, $count++); } return $contents; } - protected function getErrorMsg($info, $count) + protected function getErrorMsg($suite, $info, $count) { - $args = array(); - foreach($info['trace']['args'] as $arg) - $args[] = "'{$arg}'"; - $args = implode(",", $args); $parity = $count%2==0 ? 'even' : 'odd'; + $command = explode("|",$info['command']); $msg = <<<EOD <div class="error_msg {$parity}"> <strong>#{$count}.</strong> "<span class="msg">{$info['msg']}</span>" in <span class="function"> - {$info['trace']['class']}::{$info['trace']['function']}({$args}) - </span> - near - <span class="file"> - {$info['trace']['file']}:({$info['trace']['line']}) + {$suite->name}::{$command[1]}('{$command[2]}'); </span> </div> EOD; + return $msg; } |