forked from helpfulrobot/chillu-phpmd-silverstripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
executable file
·22 lines (22 loc) · 1.06 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" backupGlobals="false" processIsolation="false" backupStaticAttributes="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" cacheResultFile="./build/cache/phpunit.result.cache" bootstrap="vendor/autoload.php" colors="true" verbose="true">
<!-- Testsuites -->
<testsuites>
<testsuite name="functional-tests">
<directory>./tests/Functional</directory>
</testsuite>
<testsuite name="unit-tests">
<directory>./tests/Unit</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<!-- Code coverage -->
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</coverage>
</phpunit>