加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
phpunit.xml 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
guanguans 提交于 2020-10-22 12:56 . Update testing
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<directory>src/Commands</directory>
<directory>src/Consoles</directory>
<directory>src/Contracts</directory>
<directory>src/Events</directory>
<directory>src/Exceptions</directory>
<directory>src/Listeners</directory>
<directory>src/Support</directory>
<file>src/Config.php</file>
<file>src/Helpers.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="coverage.text"/>
</logging>
</phpunit>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化