-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
phpunit.xml.dist
54 lines (52 loc) · 1.85 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
<?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="vendor/autoload.php"
cacheDirectory="build/.phpunit.cache"
executionOrder="random"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
colors="true">
<testsuites>
<testsuite name="Builder">
<directory suffix=".php">./tests/Builder</directory>
</testsuite>
<testsuite name="Components">
<directory suffix=".php">./tests/Components</directory>
</testsuite>
<testsuite name="Lexer">
<directory suffix=".php">./tests/Lexer</directory>
</testsuite>
<testsuite name="Misc">
<directory suffix=".php">./tests/Misc</directory>
</testsuite>
<testsuite name="Parser">
<directory suffix=".php">./tests/Parser</directory>
</testsuite>
<testsuite name="Utils">
<directory suffix=".php">./tests/Utils</directory>
</testsuite>
<testsuite name="Tools">
<directory suffix=".php">./tests/Tools</directory>
<exclude>./tests/Tools/templates/</exclude>
<exclude>./tests/Tools/contexts/</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml"/>
<xml outputDirectory="build/logs/coverage-xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/logs/junit.xml"/>
</logging>
</phpunit>