Removed strict and verbose flags from default PHPUnit

It complains when *any* output was caused during test
runs, which is confusing for the typical var_dump()
debugging style.
This commit is contained in:
Ingo Schommer 2012-11-23 15:18:47 +01:00
parent 8e074cdfee
commit 69ff09d73e
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
for more information on configuration and execution options.
- framework/dev/TestRunner.php for an alternative way to run unit tests through the "sake" CLI tool.
-->
<phpunit bootstrap="framework/tests/bootstrap.php" colors="true" backupGlobals="false" backupStaticAttributes="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" syntaxCheck="false" verbose="true" strict="true">
<phpunit bootstrap="framework/tests/bootstrap.php" colors="true" backupGlobals="false" backupStaticAttributes="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" syntaxCheck="false">
<testsuite name="Default">
<directory>mysite/tests</directory>