From 5b4c4ffd6589c63ce1289c3a01fae756c708710e Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 16 Jul 2007 18:31:52 +0000 Subject: [PATCH] more efficient memory handling --- tests/Test.php | 38 ++++++++++++-------------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/tests/Test.php b/tests/Test.php index ec39803b0..4e2b37e11 100644 --- a/tests/Test.php +++ b/tests/Test.php @@ -1,5 +1,5 @@ _testCases as $testCase) { + foreach ($this->_testCases as $k => $testCase) { $testCase->run(); + + $this->_passed += $testCase->getPassCount(); + $this->_failed += $testCase->getFailCount(); + $this->_messages += $testCase->getMessages(); + + $this->_testCases[$k] = null; } $reporter->setTestCase($this); $reporter->paintHeader(); $reporter->paintFooter(); } - public function getMessages() - { - $messages = array(); - foreach($this->_testCases as $testCase) { - $messages = array_merge($messages, $testCase->getMessages()); - } - return $messages; - } - public function getFailCount() - { - $fails = 0; - foreach ($this->_testCases as $testCase) { - $fails += $testCase->getFailCount(); - } - return $fails; - } + + public function getTestCaseCount() { return count($this->_testCases); } - public function getPassCount() - { - $passes = 0; - foreach ($this->_testCases as $testCase) { - $passes += $testCase->getPassCount(); - } - return $passes; - } + + } class HtmlReporter {