1234567891011121314151617181920212223242526272829303132 |
- <?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="Setting Test Suite">
- <directory>./tests/</directory>
- <exclude>vendor</exclude>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory suffix=".php">src/</directory>
- <exclude>
- <directory>vendor/</directory>
- </exclude>
- </whitelist>
- </filter>
- <php>
- <env name="APP_ENV" value="testing"/>
- <env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
- <env name="kuaidi100_key" value=""/>
- <env name="kuaidi100_customer" value=""/>
- <env name="CACHE_DRIVER" value="file"/>
- </php>
- </phpunit>
|