-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml.dist
32 lines (26 loc) · 1.08 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./WrapperBundle/Tests/bootstrap.php">
<php>
<!-- the following have been moved to env vars, as they might vary depending on setups -->
<!--<server name="KERNEL_DIR" value="vendor/ezsystems/ezpublish-community/ezpublish" />
<server name="SYMFONY_ENV" value="behat" />-->
<!-- we allow some deprecation warnings to go through -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="1000" />
</php>
<!-- code coverage reporting -->
<filter>
<whitelist>
<directory suffix=".php">./WrapperBundle/</directory>
<exclude>
<directory>./WrapperBundle/Resources</directory>
<directory>./WrapperBundle/Tests</directory>
<directory>./WrapperBundle/vendor</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Kaliop eZObjectWrapperBundle Test Suite">
<directory>./WrapperBundle/Tests/phpunit/</directory>
</testsuite>
</testsuites>
</phpunit>