text phpunit.xml.dist
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text phpunit.xml.dist相关的知识,希望对你有一定的参考价值。
<?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="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
</php>
</phpunit>
以上是关于text phpunit.xml.dist的主要内容,如果未能解决你的问题,请参考以下文章
xml phpunit.xml.dist
PHPUnit测试失败
shopware 6插件的单元测试未找到自定义服务
Symfony 3 功能测试错误(KERNEL_DIR 或 WebTestCase)
库魔法。 text/plain 而不是 text/javascript text/css
<!-- text --> 和 /* text */ 注释有啥区别?