laravel 中 phpunit的使用

来源:互联网 发布:淘宝司法拍卖怎么样 编辑:程序博客网 时间:2024/04/30 12:09

在laravel的目录下 找到 phpunit.xml 文件

<?xml version="1.0" encoding="UTF-8"?><phpunit backupGlobals="false"         backupStaticAttributes="false"         bootstrap="bootstrap/autoload.php"         colors="true"         convertErrorsToExceptions="true"         convertNoticesToExceptions="true"         convertWarningsToExceptions="true"         processIsolation="false"         stopOnFailure="false"         syntaxCheck="false"         beStrictAboutTestsThatDoNotTestAnything="true"         checkForUnintentionallyCoveredCode="true"         beStrictAboutOutputDuringTests="true"         beStrictAboutChangesToGlobalState="true">    <testsuites>        <testsuite name="Application Test Suite">            <directory>./tests/Pc/</directory>            // 在这里设置目录        </testsuite>    </testsuites>    <filter>        <whitelist>            <directory suffix=".php">app/</directory>        </whitelist>    </filter>    <php>        <env name="APP_ENV" value="testing"/>        <env name="CACHE_DRIVER" value="array"/>        <env name="SESSION_DRIVER" value="file"/>        <env name="QUEUE_DRIVER" value="sync"/>    </php></phpunit>
0 0
原创粉丝点击