Skip to content

Commit 4e1e231

Browse files
Updated phpunit config
1 parent e214c25 commit 4e1e231

File tree

1 file changed

+17
-25
lines changed

1 file changed

+17
-25
lines changed

phpunit.xml.dist

+17-25
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit
3-
backupGlobals="true"
4-
strict="false"
5-
backupStaticAttributes="false"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
forceCoversAnnotation="false"
10-
mapTestClassNameToCoveredClassName="false"
11-
processIsolation="false"
12-
stopOnFailure="false"
13-
stopOnError="false"
14-
stopOnIncomplete="false"
15-
stopOnSkipped="false"
16-
syntaxCheck="false"
17-
bootstrap="tests/bootstrap.php"
18-
verbose="false"
19-
colors="true">
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
beStrictAboutTestsThatDoNotTestAnything="true"
5+
beStrictAboutOutputDuringTests="true"
6+
bootstrap="tests/bootstrap.php"
7+
colors="true"
8+
convertErrorsToExceptions="true"
9+
convertNoticesToExceptions="true"
10+
convertWarningsToExceptions="true"
11+
processIsolation="false"
12+
stopOnError="false"
13+
stopOnFailure="false"
14+
verbose="true"
15+
>
2016
<testsuites>
21-
<testsuite name="namshi/jose Test Suite">
17+
<testsuite name="JOSE Test Suite">
2218
<directory suffix="Test.php">./tests</directory>
2319
</testsuite>
2420
</testsuites>
2521
<filter>
26-
<whitelist>
27-
<directory suffix=".php">./</directory>
28-
<exclude>
29-
<directory>./tests</directory>
30-
<directory>./vendor</directory>
31-
</exclude>
22+
<whitelist processUncoveredFilesFromWhitelist="true">
23+
<directory suffix=".php">./src</directory>
3224
</whitelist>
3325
</filter>
3426
</phpunit>

0 commit comments

Comments
 (0)