forked from phpbrew/phpbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
51 lines (42 loc) · 1.64 KB
/
Copy pathphpunit.xml
File metadata and controls
51 lines (42 loc) · 1.64 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
verbose="true">
<php>
<env name="PHPBREW_ROOT" value="tests/.phpbrew"/>
<env name="PHPBREW_HOME" value="tests/.phpbrew"/>
</php>
<testsuites>
<testsuite name="All">
<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">
<file>tests/PhpBrew/ExtensionInstallerTest.php</file>
<file>tests/PhpBrew/ExtensionMetaTest.php</file>
</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>