You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
1 year ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
colors="true"
|
||
|
executionOrder="random"
|
||
|
beStrictAboutOutputDuringTests="true"
|
||
|
failOnRisky="true"
|
||
|
failOnWarning="true"
|
||
|
cacheDirectory="build/phpunit/cache"
|
||
|
columns="max"
|
||
|
requireCoverageMetadata="true"
|
||
|
>
|
||
|
<testsuites>
|
||
|
<testsuite name="NexusPHP CS Config Test Suite">
|
||
|
<directory suffix="Test.php">tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<source>
|
||
|
<include>
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</include>
|
||
|
</source>
|
||
|
|
||
|
<coverage ignoreDeprecatedCodeUnits="true">
|
||
|
<report>
|
||
|
<clover outputFile="build/phpunit/logs/clover.xml"/>
|
||
|
<html outputDirectory="build/phpunit/logs/html"/>
|
||
|
</report>
|
||
|
</coverage>
|
||
|
|
||
|
<extensions>
|
||
|
<bootstrap class="Nexus\PHPUnit\Tachycardia\TachycardiaExtension" />
|
||
|
</extensions>
|
||
|
</phpunit>
|