[limb-svn] r6914 - 3.x/trunk/limb/tests_runner/src
svn at limb-project.com
svn at limb-project.com
Thu Apr 10 20:50:19 MSD 2008
Author: pachanga
Date: 2008-04-10 20:50:19 +0400 (Thu, 10 Apr 2008)
New Revision: 6914
URL: http://fisheye.limb-project.com/changelog/limb/?cs=6914
Modified:
3.x/trunk/limb/tests_runner/src/lmbTestRunner.class.php
Log:
-- minor methods renaming
Modified: 3.x/trunk/limb/tests_runner/src/lmbTestRunner.class.php
===================================================================
--- 3.x/trunk/limb/tests_runner/src/lmbTestRunner.class.php 2008-04-10 14:22:51 UTC (rev 6913)
+++ 3.x/trunk/limb/tests_runner/src/lmbTestRunner.class.php 2008-04-10 16:50:19 UTC (rev 6914)
@@ -47,13 +47,13 @@
{
require_once(dirname(__FILE__) . '/../simpletest.inc.php');
- $this->_startStatsCheck();
+ $this->_startMemoryCheck();
$this->_startCoverage();
$res = $this->_doRun($root_node, $path);
$this->_endCoverage();
- $this->_stopStatsCheck();
+ $this->_endMemoryCheck();
return $res;
}
@@ -66,13 +66,13 @@
return $test->run($this->_getReporter());
}
- protected function _startStatsCheck()
+ protected function _startMemoryCheck()
{
$this->start_time = microtime(true);
$this->start_memory_usage = memory_get_usage();
}
- protected function _stopStatsCheck()
+ protected function _endMemoryCheck()
{
$this->end_time = microtime(true);
$this->end_memory_usage = memory_get_usage();
More information about the limb-svn
mailing list