forked from phpbrew/phpbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
58 lines (49 loc) · 2.05 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
58 lines (49 loc) · 2.05 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertErrorsToExceptions="true"
colors="true"
verbose="true">
<php>
<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"/>
</php>
<testsuites>
<testsuite name="All">
<file>tests/PhpBrew/Command/KnownCommandTest.php</file>
<file>tests/PhpBrew/Command/InstallCommandTest.php</file>
<directory suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="Core">
<file>tests/PhpBrew/BuildTest.php</file>
<file>tests/PhpBrew/UtilsTest.php</file>
<file>tests/PhpBrew/VariantBuilderTest.php</file>
<file>tests/PhpBrew/VariantParserTest.php</file>
<file>tests/PhpBrew/VersionTest.php</file>
<file>tests/PhpBrew/ConfigTest.php</file>
</testsuite>
<testsuite name="Commands">
<directory suffix="Test.php">tests/PhpBrew/Command</directory>
</testsuite>
<testsuite name="Extension">
<directory suffix="Test.php">tests/PhpBrew/Extension</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="build/logs/report.tap" />
<log type="junit" target="build/logs/report.junit.xml" />
<log type="coverage-html" target="build/logs/coverage" charset="UTF-8" yui="true" highlight="true" />
<log type="coverage-text" target="build/logs/coverage.txt" />
<log type="coverage-clover" target="build/logs/clover.xml" />
</logging>
</phpunit>