-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathphpunit.xml.dist
24 lines (24 loc) · 972 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/phpunit/bootstrap.php" backupGlobals="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<file>openid-connect-generic.php</file>
<directory suffix=".php">includes/</directory>
</include>
<report>
<clover outputFile="clover.xml"/>
</report>
</coverage>
<php>
<env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/phpunit/wp-tests-config.php"/>
</php>
<testsuites>
<testsuite name="Plugin">
<file>./tests/phpunit/openid-connect-generic_test.php</file>
</testsuite>
<testsuite name="Includes">
<directory suffix="_test.php">./tests/phpunit/includes/</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>