Skip to content

Commit b99f807

Browse files
author
Joel Butcher
committed
migrate phpunit config
1 parent 8dcef6e commit b99f807

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

phpunit.xml.dist

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
<phpunit
2-
colors="true"
3-
stderr="true"
4-
convertErrorsToExceptions="true"
5-
convertNoticesToExceptions="true"
6-
convertWarningsToExceptions="true"
7-
stopOnFailure="false"
8-
bootstrap="tests/bootstrap.php"
9-
verbose="true">
10-
<testsuites>
11-
<testsuite name="Facebook PHP SDK Test Suite">
12-
<directory>./tests</directory>
13-
</testsuite>
14-
</testsuites>
15-
<filter>
16-
<whitelist>
17-
<directory suffix=".php">./src</directory>
18-
</whitelist>
19-
</filter>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" stderr="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" bootstrap="tests/bootstrap.php" verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage>
4+
<include>
5+
<directory suffix=".php">./src</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="Facebook PHP SDK Test Suite">
10+
<directory>./tests</directory>
11+
</testsuite>
12+
</testsuites>
2013
</phpunit>

0 commit comments

Comments
 (0)