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.
22 lines
591 B
XML
22 lines
591 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
|
bootstrap="./includes/autoload.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Feature">
|
|
<directory>./tests/Feature</directory>
|
|
</testsuite>
|
|
<testsuite name="Unit">
|
|
<directory>./tests/Unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage>
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|