TaoLer/vendor/topthink/framework/phpunit.xml.dist

28 lines
959 B
Plaintext
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2023-08-02 19:38:12 +08:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
2020-01-01 13:17:19 +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"
2023-08-02 19:38:12 +08:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
2020-01-01 13:17:19 +08:00
>
2023-08-02 19:38:12 +08:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src/think</directory>
</include>
</coverage>
2020-01-01 13:17:19 +08:00
<testsuites>
<testsuite name="ThinkPHP Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>