* change the 'private' to 'public'.

This commit is contained in:
shiyangyangwork@yahoo.cn
2012-02-09 07:53:36 +00:00
parent b30c103ecc
commit f2ef4a56f6
15 changed files with 96 additions and 96 deletions
+2 -2
View File
@@ -254,10 +254,10 @@ class testcaseModel extends model
* Join steps to a string, thus can diff them.
*
* @param array $steps
* @access private
* @access public
* @return string
*/
private function joinStep($steps)
public function joinStep($steps)
{
$retrun = '';
foreach($steps as $step) $return .= $step->desc . ' EXPECT:' . $step->expect . "\n";