-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (23 loc) · 801 Bytes
/
phpunit.xml
File metadata and controls
24 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="all">
<directory>./test/</directory>
</testsuite>
<testsuite name="unit">
<directory>./test/</directory>
<exclude>./test/Infrastructure</exclude>
</testsuite>
<testsuite name="infra">
<directory>./test/Infrastructure</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/*</directory>
<exclude>
<directory suffix=".php">src/Infrastructure/Repository/Doctrine/Mapping</directory>
</exclude>
</whitelist>
</filter>
</phpunit>