23 lines
617 B
XML
23 lines
617 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
|
bootstrap="./includes/autoload.php"
|
|
forceCoversAnnotation="true"
|
|
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>
|