-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
26 lines (26 loc) · 894 Bytes
/
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
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<testsuites>
<testsuite name="Netgen\BirthdayBundle\Tests">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">bundle</directory>
<exclude>
<directory>bundle/DependencyInjection</directory>
<directory>bundle/Resources</directory>
<directory>bundle/extension</directory>
<file>bundle/NetgenBirthdayBundle.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>