-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
19 lines (19 loc) · 816 Bytes
/
phpunit.xml.dist
File metadata and controls
19 lines (19 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" failOnWarning="true">
<logging>
<junit outputFile="build/logs/results.xml"/>
</logging>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/src/Unit</directory>
</testsuite>
<testsuite name="Functional">
<directory suffix="Test.php">./tests/src/Functional</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>