forked from ezsystems/ezplatform-xmltext-fieldtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
26 lines (26 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
syntaxCheck="true">
<testsuites>
<testsuite name="XmlText field type unit tests">
<directory suffix="Test.php">./tests/bundle/</directory>
<directory suffix="Test.php">./tests/lib/</directory>
<exclude>./tests/lib/XmlTextAPIIntegrationTest.php</exclude>
<exclude>./tests/lib/XmlTextSPIIntegrationTest.php</exclude>
</testsuite>
<testsuite name="XmlText field type eZ Platform Repository SPI integration test suite">
<file>./tests/lib/XmlTextSPIIntegrationTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./bundle</directory>
<directory>./lib</directory>
<directory>./vendor</directory>
</whitelist>
</filter>
</phpunit>