pay/phpunit.xml

26 lines
912 B
XML
Raw Permalink Normal View History

2017-08-21 21:54:26 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2022-08-17 14:15:40 +08:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
2017-08-21 21:54:26 +08:00
bootstrap="vendor/autoload.php"
2022-08-17 14:15:40 +08:00
executionOrder="depends,defects"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="default">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
2017-08-21 21:54:26 +08:00
</phpunit>