You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
576 B
XML
20 lines
576 B
XML
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="./tests/autoload.php"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.3/phpunit.xsd"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Feature">
|
|
<directory>./tests/Feature</directory>
|
|
</testsuite>
|
|
<testsuite name="Unit">
|
|
<directory>./tests/Unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|