forked from phpbrew/phpbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
32 lines (27 loc) · 985 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?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>