Skip to content

Commit a7bf3f7

Browse files
committed
Updated phpunit.xml
1 parent 0d70a9b commit a7bf3f7

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

phpunit.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
colors="true"
5-
convertErrorsToExceptions="true"
6-
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
8-
processIsolation="false"
9-
stopOnFailure="false"
10-
syntaxCheck="false"
11-
bootstrap="tests/bootstrap.php"
12-
>
2+
<phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true">
133
<testsuites>
144
<testsuite name="Source Test Suite">
155
<directory>./tests/</directory>
166
</testsuite>
177
</testsuites>
188
<filter>
199
<whitelist>
20-
<directory>./src/</directory>
10+
<directory suffix=".php">./src/</directory>
2111
</whitelist>
12+
<blacklist>
13+
<directory>tests</directory>
14+
<directory>vendor</directory>
15+
</blacklist>
2216
</filter>
2317
</phpunit>

0 commit comments

Comments
 (0)