-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
34 lines (34 loc) · 1.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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
backupGlobals="true"
cacheResultFile="./test/caches/phpunit.cache.xml"
>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="ClassMethod">
<directory>./test/phpunit/ClassMethod</directory>
</testsuite>
<testsuite name="Functions">
<directory>./test/phpunit/Functions</directory>
</testsuite>
<testsuite name="Constant">
<directory>./test/phpunit/Constant</directory>
</testsuite>
<testsuite name="Smocky">
<directory>./test/phpunit/Smocky</directory>
</testsuite>
<testsuite name="Phpunit">
<directory>./test/phpunit/Phpunit</directory>
</testsuite>
</testsuites>
<logging>
<testdoxText outputFile="php://stdout"/>
<junit outputFile="./test/report-junit.xml"/>
</logging>
</phpunit>