-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (29 loc) · 1.02 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (29 loc) · 1.02 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
This simply contains unit tests for the few concrete classes in PHPCR.
See https://github.com/phpcr/phpcr-api-tests/ for the extensive api test suite.
-->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="PHPCR Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>
<!-- configuration for code coverage report -->
<filter>
<whitelist>
<file>src/PHPCR/PropertyType.php</file>
<file>src/PHPCR/GuestCredentials.php</file>
<file>src/PHPCR/SimpleCredentials.php</file>
<file>src/PHPCR/Version/OnParentVersionAction.php</file>
</whitelist>
</filter>
</phpunit>