|
3
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
|
|
|
3 |
<phpunit bootstrap="./Tests/bootstrap.php" color="true">
|
|
|
4 |
<!--
|
|
|
5 |
<php>
|
|
|
6 |
<server name="SYMFONY" value="../../../symfony/src" />
|
|
|
7 |
<server name="KERNEL_DIR" value="../../../../app" />
|
|
|
8 |
</php>
|
|
|
9 |
-->
|
|
|
10 |
<testsuites>
|
|
|
11 |
<testsuite name="FOSUserBundle">
|
|
|
12 |
<directory suffix="Test.php">./Tests</directory>
|
|
|
13 |
</testsuite>
|
|
|
14 |
</testsuites>
|
|
|
15 |
|
|
|
16 |
<filter>
|
|
|
17 |
<whitelist>
|
|
|
18 |
<directory>./</directory>
|
|
|
19 |
<exclude>
|
|
|
20 |
<directory>./Resources</directory>
|
|
|
21 |
<directory>./Tests</directory>
|
|
|
22 |
</exclude>
|
|
|
23 |
</whitelist>
|
|
|
24 |
</filter>
|
|
|
25 |
</phpunit>
|