mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-18 17:00:06 +08:00
26 lines
807 B
XML
26 lines
807 B
XML
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
beStrictAboutChangesToGlobalState="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="DS Tests">
|
|
<directory>vendor/php-ds/tests/tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage>
|
|
<include>
|
|
<directory>src</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="build/logs/coverage.xml" />
|
|
<html outputDirectory="build/logs/coverage" />
|
|
<text outputFile="build/logs/coverage.txt" />
|
|
</report>
|
|
</coverage>
|
|
</phpunit>
|