-
Notifications
You must be signed in to change notification settings - Fork 7
/
phpunit.xml.dist
27 lines (27 loc) · 1.2 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
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="false" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/_bootstrap.php">
<testsuites>
<testsuite name="Unit Test Suite">
<directory>./tests/unit/</directory>
</testsuite>
<testsuite name="Functional Test Suite">
<directory>./tests/functional/</directory>
</testsuite>
<testsuite name="Readme Unit Test Suite">
<directory>.hidev/vendor/hiqdev/hidev-readme/tests/unit/</directory>
</testsuite>
<testsuite name="License Unit Test Suite">
<directory>.hidev/vendor/hiqdev/hidev-license/tests/unit/</directory>
</testsuite>
<!--
<testsuite name="Readme Functional Test Suite">
<directory>.hidev/vendor/hiqdev/hidev-readme/tests/functional/</directory>
</testsuite>
-->
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>