forked from lisachenko/z-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
38 lines (38 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Z-Engine framework
~
~ @copyright Copyright 2019, Lisachenko Alexander <lisachenko.it@gmail.com>
~
~ This source file is subject to the license that is bundled
~ with this source code in the file LICENSE.
~
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="./tests/bootstrap.php">
<coverage>
<include>
<directory>./src/</directory>
</include>
<report>
<clover outputFile="./build/logs/clover.xml"/>
<crap4j outputFile="./build/logs/crap4j.xml"/>
<xml outputDirectory="./build/coverage/xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Z-Engine Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>performance</group>
</exclude>
</groups>
<logging>
<junit outputFile="./build/logs/junit.xml"/>
</logging>
</phpunit>