forked from phpbrew/phpbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
103 lines (88 loc) · 4.02 KB
/
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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
stopOnFailure="false"
stopOnError="false"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertErrorsToExceptions="true"
colors="true"
verbose="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_BIN" value=".phpbrew/bin"/>
<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="All">
<file>tests/PhpBrew/BuildRegisterTest.php</file>
<file>tests/PhpBrew/BuildTest.php</file>
<file>tests/PhpBrew/CommandBuilderTest.php</file>
<file>tests/PhpBrew/ConfigTest.php</file>
<file>tests/PhpBrew/MachineTest.php</file>
<file>tests/PhpBrew/PatchUtilsTest.php</file>
<file>tests/PhpBrew/ReleaseListTest.php</file>
<file>tests/PhpBrew/UtilsTest.php</file>
<file>tests/PhpBrew/VariantBuilderTest.php</file>
<file>tests/PhpBrew/VariantParserTest.php</file>
<file>tests/PhpBrew/VersionDslParserTest.php</file>
<file>tests/PhpBrew/VersionTest.php</file>
<!-- run install command tests before all tests -->
<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/BuildRegisterTest.php</file>
<file>tests/PhpBrew/BuildTest.php</file>
<file>tests/PhpBrew/CommandBuilderTest.php</file>
<file>tests/PhpBrew/ConfigTest.php</file>
<file>tests/PhpBrew/MachineTest.php</file>
<file>tests/PhpBrew/PatchUtilsTest.php</file>
<file>tests/PhpBrew/ReleaseListTest.php</file>
<file>tests/PhpBrew/UtilsTest.php</file>
<file>tests/PhpBrew/VariantBuilderTest.php</file>
<file>tests/PhpBrew/VariantParserTest.php</file>
<file>tests/PhpBrew/VersionDslParserTest.php</file>
<file>tests/PhpBrew/VersionTest.php</file>
<directory suffix="Test.php">tests/PhpBrew/Platform</directory>
<directory suffix="Test.php">tests/PhpBrew/Distribution</directory>
<directory suffix="Test.php">tests/PhpBrew/Downloader</directory>
<directory suffix="Test.php">tests/PhpBrew/PatchKit</directory>
<directory suffix="Test.php">tests/PhpBrew/Patches</directory>
</testsuite>
<testsuite name="Command">
<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>
<exclude>
<directory suffix=".php">src/PhpBrew/Topic</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="tap" target="build/logs/report.tap" />
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
<log type="coverage-html"
target="build/coverage"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="coverage-crap4j" target="build/logs/crap4j.xml"/>
</logging>
</phpunit>