-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (21 loc) · 699 Bytes
/
Copy pathphpunit.xml
File metadata and controls
21 lines (21 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<!-- Config file for PHPUnit automated tests -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.3/phpunit.xsd"
cacheDirectory=".phpunit.cache"
failOnDeprecation="true"
failOnPhpunitDeprecation="true"
failOnPhpunitWarning="true"
failOnNotice="true"
failOnRisky="true"
failOnWarning="true"
displayDetailsOnAllIssues="true"
>
<testsuites>
<testsuite name="Rector rule tests">
<directory>tests/Rector</directory>
</testsuite>
</testsuites>
<source/>
</phpunit>