-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml
34 lines (34 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
colors="true"
beStrictAboutOutputDuringTests="true"
>
<testsuites>
<testsuite name="BaseAPI:Library_Tests">
<directory>tests/Base/Library/</directory>
</testsuite>
<testsuite name="BaseAPI:Definition_Tests">
<directory>tests/Base/Definitions/</directory>
</testsuite>
<testsuite name="BaseAPI:Object_Tests">
<directory>tests/Base/Objects/</directory>
</testsuite>
</testsuites>
<php>
<env name="IS_UNIT_TESTING" value="1"/>
</php>
<coverage ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true"
/>
<source>
<include>
<directory>src/Base</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</source>
</phpunit>