-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit-8.5.xml
More file actions
28 lines (28 loc) · 934 Bytes
/
phpunit-8.5.xml
File metadata and controls
28 lines (28 loc) · 934 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- PHPUnit 12 >= PHP 8.3 (https://phpunit.de/supported-versions.html - https://phpunit.de/documentation.html) -->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
bootstrap="./../vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
cacheResult="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.4/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<testsuites>
<testsuite name="PhpArrayToXml Test Suite">
<directory>./../tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./../src</directory>
</include>
<exclude>
<directory>./../vendor</directory>
<directory>./../tests</directory>
</exclude>
</source>
</phpunit>