2020-06-01 15:13:21 +02:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.1/phpunit.xsd"
|
|
|
|
bootstrap="./includes/autoload.php"
|
|
|
|
colors="true"
|
2017-08-29 16:21:25 +02:00
|
|
|
>
|
2017-01-02 15:43:36 +01:00
|
|
|
<testsuites>
|
2017-09-19 19:50:59 +02:00
|
|
|
<testsuite name="Feature">
|
|
|
|
<directory>./tests/Feature</directory>
|
2017-09-19 19:33:24 +02:00
|
|
|
</testsuite>
|
2017-09-19 21:19:56 +02:00
|
|
|
<testsuite name="Unit">
|
|
|
|
<directory>./tests/Unit</directory>
|
|
|
|
</testsuite>
|
2017-01-02 15:43:36 +01:00
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2017-08-29 16:21:25 +02:00
|
|
|
<directory>./src/</directory>
|
|
|
|
</whitelist>
|
2017-01-02 15:43:36 +01:00
|
|
|
</filter>
|
2016-10-09 09:40:11 +02:00
|
|
|
</phpunit>
|