Files
shopxo/vendor/topthink/framework/phpunit.xml.dist

28 lines
959 B
Plaintext
Raw Permalink Normal View History

2021-07-18 23:42:10 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2024-04-25 14:47:59 +08:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
2021-07-18 23:42:10 +08:00
backupStaticAttributes="false"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
verbose="true"
2024-04-25 14:47:59 +08:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
2021-07-18 23:42:10 +08:00
>
2024-04-25 14:47:59 +08:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src/think</directory>
</include>
</coverage>
2021-07-18 23:42:10 +08:00
<testsuites>
<testsuite name="ThinkPHP Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>