forked from danhunsaker/laravel-flysystem-others
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
18 lines (18 loc) · 793 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" convertNoticesToExceptions="false" processIsolation="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd">
<testsuites>
<testsuite name="Laravel Flysystem Others PHPUnit Tests">
<directory>tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log target="coverage/phpunit" type="coverage-html" />
<log target="coverage/phpunit.xml" type="coverage-clover" />
</logging>
</phpunit>