-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
31 lines (28 loc) · 883 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
31 lines (28 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<!--
ATTENTION: Do not edit this file!
The version of this file in your project root is hard-linked to
vendor/timdev/devtools/src/ruleset.xml. Changes you make here will
be overwritten when that package is updated.
If you need to override anything, create a non-.dist phpcs.xml!
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
cacheDirectory="build/cache/phpunit">
<php>
<ini name="assert.exception" value="On"/>
</php>
<testsuites>
<testsuite name="unit-tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>