-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
31 lines (26 loc) · 819 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<phpunit bootstrap="tests/unit/phpunit/bootstrap.php"
backupStaticAttributes="false"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="OAuth2ClientUnit">
<directory>tests/unit/phpunit/</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="OAuth2ClientIntegration">
<directory>tests/integration/phpunit/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="data/tests/coverage"/>
</logging>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
</phpunit>