-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
phpunit.xml
33 lines (33 loc) · 1.15 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
<?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"
colors="true"
beStrictAboutOutputDuringTests="true"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="LeagueAPI:Definition_Tests">
<directory>tests/LeagueAPI/Definition/</directory>
</testsuite>
<testsuite name="LeagueAPI:Endpoint_Tests">
<directory>tests/LeagueAPI/Endpoint/</directory>
</testsuite>
<testsuite name="LeagueAPI:EndpointIntegrity_Tests">
<directory>tests/LeagueAPI/EndpointObjectIntegrity/</directory>
</testsuite>
</testsuites>
<php>
<env name="IS_UNIT_TESTING" value="1"/>
</php>
<coverage ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true"/>
<source>
<include>
<directory>src/LeagueAPI</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</source>
</phpunit>