47 lines
No EOL
1.3 KiB
XML
47 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
cacheDirectory=".phpunit.cache"
|
|
backupGlobals="false"
|
|
backupStaticProperties="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="Unit Tests">
|
|
<directory>tests/Unit</directory>
|
|
</testsuite>
|
|
<testsuite name="Integration Tests">
|
|
<directory>tests/Integration</directory>
|
|
</testsuite>
|
|
<testsuite name="Core">
|
|
<directory>tests/Unit/Core</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source>
|
|
<include>
|
|
<directory>src</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory>src/Modules</directory>
|
|
</exclude>
|
|
</source>
|
|
|
|
<coverage>
|
|
<report>
|
|
<html outputDirectory="coverage-html"/>
|
|
<text outputFile="php://stdout"/>
|
|
</report>
|
|
</coverage>
|
|
|
|
<logging>
|
|
<junit outputFile="phpunit-junit.xml"/>
|
|
</logging>
|
|
|
|
<php>
|
|
<env name="APP_ENV" value="testing"/>
|
|
</php>
|
|
</phpunit> |