|
From: Jason S. <jsw...@ya...> - 2004-04-06 15:19:11
|
to be consistent with the HtmlReporter, should the TextReport show a pass count
as well?
If no one objects, I will commit it sometime in the next couple of days.
example:
OK
Test cases run: 1/1, Passes: 13, Failures: 0, Exceptions: 0
$ cvs diff reporter.php
Index: reporter.php
===================================================================
RCS file: /cvsroot/simpletest/simpletest/reporter.php,v
retrieving revision 1.23
diff -c -r1.23 reporter.php
*** reporter.php 6 Apr 2004 03:29:04 -0000 1.23
--- reporter.php 6 Apr 2004 15:04:36 -0000
***************
*** 182,187 ****
--- 182,188 ----
}
print "Test cases run: " . $this->getTestCaseProgress() .
"/" . $this->getTestCaseCount() .
+ ", Passes: " . $this->getPassCount() .
", Failures: " . $this->getFailCount() .
", Exceptions: " . $this->getExceptionCount() . "\n";
__________________________________
Do you Yahoo!?
Yahoo! Small Business $15K Web Design Giveaway
http://promotions.yahoo.com/design_giveaway/
|