forked from mprokopov/test-oxid-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
31 lines (31 loc) · 1.09 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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
stopOnFailure="true"
colors="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
executionOrder="random"
bootstrap=".autoload.php"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">project-modules</directory>
</include>
<exclude>
<directory suffix=".php">project-modules/*/Scripts</directory>
<directory suffix=".php">project-modules/*/Tests</directory>
<directory suffix=".php">project-modules/*/translations</directory>
<file>project-modules/*/metadata.php</file>
<directory suffix=".php">project-modules/*/views/</directory>
<directory suffix="metadata.php">project-modules</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="unit-tests">
<directory>project-modules/*/Tests/Unit</directory>
</testsuite>
<testsuite name="integration-tests">
<directory>project-modules/*/Tests/Integration</directory>
</testsuite>
</testsuites>
</phpunit>