-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
49 lines (49 loc) · 1.88 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
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
defaultTestSuite="access-definitions,paths,dql,extra,queries,jsonapi"
bootstrap="bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache"
>
<source>
<include>
<directory suffix=".php">./packages/access-definitions/src</directory>
<directory suffix=".php">./packages/jsonapi/src</directory>
<directory suffix=".php">./packages/dql/src</directory>
<directory suffix=".php">./packages/extra/src</directory>
<directory suffix=".php">./packages/paths/src</directory>
<directory suffix=".php">./packages/queries/src</directory>
</include>
</source>
<testsuites>
<testsuite name="paths">
<directory>packages/paths/tests</directory>
</testsuite>
<testsuite name="jsonapi">
<directory>packages/jsonapi/tests</directory>
</testsuite>
<testsuite name="dql">
<directory>packages/dql/tests</directory>
</testsuite>
<testsuite name="access-definitions">
<directory>packages/access-definitions/tests</directory>
</testsuite>
<testsuite name="extra">
<directory>packages/extra/tests</directory>
</testsuite>
<testsuite name="queries">
<directory>packages/queries/tests</directory>
</testsuite>
</testsuites>
<!--<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
<directory>./tests</directory>
</whitelist>
</filter>-->
<php>
<ini name="display_errors" value="On"/>
<ini name="display_startup_errors" value="On"/>
</php>
</phpunit>