forked from symfony/symfony
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
38 lines (34 loc) · 1.42 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
37
38
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Symfony Test Suite">
<directory>./tests/Symfony/</directory>
<directory>./src/Symfony/Framework/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/Symfony/</directory>
<exclude>
<directory suffix=".php">./src/Symfony/Framework/DoctrineBundle</directory>
<directory suffix=".php">./src/Symfony/Framework/ZendBundle</directory>
<directory suffix=".php">./src/Symfony/Framework/DoctrineBundle/Resources</directory>
<directory suffix=".php">./src/Symfony/Framework/ProfilerBundle/Resources</directory>
<directory suffix=".php">./src/Symfony/Framework/SwiftmailerBundle/Resources</directory>
<directory suffix=".php">./src/Symfony/Framework/WebBundle/Resources</directory>
<directory suffix=".php">./src/Symfony/Framework/ZendBundle/Resources</directory>
<file>src/Symfony/Foundation/bootstrap.php</file>
<file>src/Symfony/Foundation/packager.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>