Skip to content

Commit c46b612

Browse files
committed
added a global phpunit.xml file
1 parent 549dbc6 commit c46b612

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

phpunit.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit backupGlobals="false"
4+
backupStaticAttributes="false"
5+
colors="false"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="true"
11+
syntaxCheck="false"
12+
>
13+
<testsuites>
14+
<testsuite name="Symfony Test Suite">
15+
<directory>./tests/Symfony/</directory>
16+
<directory>./src/Symfony/Framework/</directory>
17+
</testsuite>
18+
</testsuites>
19+
</phpunit>

0 commit comments

Comments
 (0)