首页 > 解决方案 > 配置 phpunit.xml

问题描述

我的 phpunit.xml -

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
     backupGlobals="false"
     backupStaticAttributes="false"
     bootstrap="vendor/autoload.php"
     colors="true"
     convertErrorsToExceptions="true"
     convertNoticesToExceptions="true"
     convertWarningsToExceptions="true"
     processIsolation="false"
     stopOnFailure="false"
     stopOnError="false"
     stopOnIncomplete="false"
     stopOnSkipped="false"
     stopOnRisky="false">

但它停止了,在第一次错误之后。我确信我使用了正确的文件。

标签: phpphpunit

解决方案


推荐阅读