forked from netgen/TagsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
36 lines (36 loc) · 1.25 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
27
28
29
30
31
32
33
34
35
36
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
>
<testsuites>
<testsuite name="Netgen\TagsBundle\Tests\Core">
<directory>Tests/Core</directory>
</testsuite>
<testsuite name="Netgen\TagsBundle\Tests\SPI">
<directory>Tests/SPI</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>.</directory>
<exclude>
<directory>API</directory>
<directory>SPI</directory>
<directory>Controller</directory>
<directory>ApiLoader</directory>
<directory>DependencyInjection</directory>
<directory>Resources</directory>
<directory>Tests</directory>
<directory>vendor</directory>
<directory>var</directory>
<directory>extension</directory>
<file>bootstrap.php</file>
<file>NetgenTagsBundle.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>