-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
45 lines (42 loc) · 1.4 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>src/constants.php</file>
</exclude>
</coverage>
<testsuites>
<testsuite name="Core">
<file>tests/TestCase/Extensions/TextTest.php</file>
<file>tests/TestCase/TypeTest.php</file>
<file>tests/TestCase/StrictObjectTest.php</file>
</testsuite>
<testsuite name="Unit">
<directory>tests/TestCase</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>examples</group>
<group>wip</group>
<group>proposals</group>
</exclude>
</groups>
<logging>
<!-- <log type="coverage-clover" target="output/code-coverage/clover.xml"/> -->
<!-- <log type="coverage-html" target="output/code-coverage" lowUpperBound="25" highLowerBound="75"/> -->
<!-- <log type="coverage-php" target="output/code-coverage/serialized.php"/> -->
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> -->
<testdoxHtml outputFile="output/testdox/index.html" />
<testdoxText outputFile="output/testdox/tests.txt" />
</logging>
</phpunit>