Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Commit ff86863

Browse files
committed
Add PHPUnit configuration
1 parent decf3df commit ff86863

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

phpunit.xml.dist

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<phpunit
3+
backupGlobals='false'
4+
backupStaticAttributes='false'
5+
colors='true'
6+
convertErrorsToExceptions='true'
7+
convertNoticesToExceptions='true'
8+
convertWarningsToExceptions='true'
9+
processIsolation='false'
10+
stopOnFailure='false'>
11+
12+
<testsuites>
13+
<testsuite name='FlexModelBundle'>
14+
<directory>./Tests</directory>
15+
</testsuite>
16+
</testsuites>
17+
18+
<filter>
19+
<whitelist>
20+
<directory>./</directory>
21+
<exclude>
22+
<directory>./Resources</directory>
23+
<directory>./Tests</directory>
24+
<directory>./vendor</directory>
25+
</exclude>
26+
</whitelist>
27+
</filter>
28+
</phpunit>

0 commit comments

Comments
 (0)