forked from doctrine/persistence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
21 lines (20 loc) · 749 Bytes
/
phpunit.xml.dist
File metadata and controls
21 lines (20 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
>
<testsuites>
<testsuite name="Doctrine Persistence Test Suite">
<directory>tests</directory>
<directory phpVersion="7.4" phpVersionOperator=">=">tests_php74</directory>
<directory phpVersion="8.1" phpVersionOperator=">=">tests_php81</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>