加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
phpunit.xml.dist 985 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sergei Morozov 提交于 2019-12-18 20:49 . Removed the AppStore feature
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
>
<php>
<ini name="safe_mode_allowed_env_var" value="PHP_,PHPBREW"/>
<env name="PHPBREW_ROOT" value=".phpbrew"/>
<env name="PHPBREW_HOME" value=".phpbrew"/>
<env name="PHPBREW_EXTENSION_DIR" value="tests/fixtures/ext"/>
<env name="PHPBREW_FIXTURES_PHP_DIR" value="tests/fixtures/php"/>
<env name="PHPBREW_EXPECTED_PHP_DIR" value="tests/expected/php"/>
<env name="PHPBREW_BUILD_PHP_DIR" value="tests/build"/>
</php>
<testsuites>
<testsuite name="PHPBrew">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化