Skip to content

Commit ceb6c75

Browse files
committed
Update phpunit coverage whitelist
1 parent 823225b commit ceb6c75

File tree

2 files changed

+28
-21
lines changed

2 files changed

+28
-21
lines changed

.idea/fogbugz-php-api.iml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
1-
<phpunit
2-
backupGlobals="true"
3-
backupStaticAttributes="false"
4-
colors="false"
5-
convertErrorsToExceptions="true"
6-
convertNoticesToExceptions="true"
7-
convertWarningsToExceptions="true"
8-
forceCoversAnnotation="false"
9-
mapTestClassNameToCoveredClassName="false"
10-
processIsolation="false"
11-
stopOnError="false"
12-
stopOnFailure="false"
13-
stopOnIncomplete="false"
14-
stopOnSkipped="false"
15-
syntaxCheck="false"
16-
strict="false"
17-
verbose="true"
18-
>
1+
<phpunit backupGlobals="false"
2+
backupStaticAttributes="false"
3+
bootstrap="bootstrap/app.php"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
processIsolation="false"
9+
stopOnFailure="false"
10+
syntaxCheck="false">
1911
<testsuites>
20-
<testsuite name="FogBugz PHP API Unit testing">
21-
<directory>test</directory>
22-
</testsuite>
12+
<testsuite name="FogBugz PHP API Unit testing">
13+
<directory>test</directory>
14+
</testsuite>
2315
</testsuites>
16+
<filter>
17+
<whitelist processUncoveredFilesFromWhitelist="true">
18+
<directory suffix=".php">./src</directory>
19+
</whitelist>
20+
</filter>
2421
</phpunit>

0 commit comments

Comments
 (0)