Skip to content

Commit e950f1a

Browse files
committed
Use tabs vs spaces in the test config file.
1 parent 198125a commit e950f1a

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

phpunit.xml.dist

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,29 @@
1-
<phpunit bootstrap="tests/bootstrap.php" backupGlobals="false" colors="true">
1+
<phpunit
2+
bootstrap="tests/bootstrap.php"
3+
backupGlobals="false"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
>
29
<testsuites>
310
<!-- Default test suite to run all tests -->
411
<testsuite>
512
<directory prefix="test_" suffix=".php">tests</directory>
613
</testsuite>
714
</testsuites>
15+
16+
<logging>
17+
<log type="coverage-html" target="coverage" title="PHPUnit"
18+
charset="UTF-8" yui="true" highlight="true" />
19+
</logging>
20+
21+
<filter>
22+
<blacklist>
23+
<directory suffix=".php">.</directory>
24+
</blacklist>
25+
<whitelist>
26+
<directory suffix=".php">./lib</directory>
27+
</whitelist>
28+
</filter>
829
</phpunit>

0 commit comments

Comments
 (0)