Skip to content

Commit 46bcdee

Browse files
committed
Move test error reporting setup to phpunit.xml
1 parent 2581cb9 commit 46bcdee

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

phpunit.xml.dist

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@
33
<phpunit backupGlobals="false"
44
colors="true"
55
verbose="true"
6-
bootstrap="tests/bootstrap.php">
6+
bootstrap="vendor/autoload.php">
77
<testsuites>
8-
<testsuite name="HTMLPurifier-HMLT5 Test Suite">
8+
<testsuite name="HTMLPurifier_HTML5 Test Suite">
99
<directory suffix=".php">./tests/HTMLPurifier</directory>
1010
</testsuite>
1111
</testsuites>
12+
<php>
13+
<ini name="display_errors" value="On" />
14+
<ini name="display_startup_errors" value="On" />
15+
<ini name="error_reporting" value="-1" />
16+
</php>
1217
</phpunit>

tests/bootstrap.php

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)