Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
phpunit.xml.dist 1.57 KB
Copy Edit Raw Blame History
Gogs authored 2018-01-23 14:57 . sonar
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Lb Framework Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./applications</directory>
<directory>./components</directory>
<directory>./controllers</directory>
<directory>./models</directory>
<file>./BaseClass.php</file>
<file>./Lb.php</file>
<file>./SwooleLb.php</file>
</whitelist>
</filter>
<!--<filter>-->
<!--<blacklist>-->
<!--<directory>./.phan</directory>-->
<!--<directory>./.scannerwork</directory>-->
<!--<directory>./_ide_helper</directory>-->
<!--<directory>./vendor</directory>-->
<!--<file>./.gitignore</file>-->
<!--<file>./.reviewboardrc</file>-->
<!--<file>./.travis.yml</file>-->
<!--<file>./composer.json</file>-->
<!--<file>./composer.lock</file>-->
<!--<file>./LICENSE</file>-->
<!--<file>./phpunit.xml.dist</file>-->
<!--<file>./pre-commit</file>-->
<!--<file>./README.md</file>-->
<!--<file>./sonar.sh</file>-->
<!--</blacklist>-->
<!--</filter>-->
</phpunit>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化