-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.example.xml
More file actions
16 lines (16 loc) · 932 Bytes
/
phpunit.example.xml
File metadata and controls
16 lines (16 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false">
<testsuites>
<testsuite name="Tests">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<!-- Where to find wp-load.php -->
<env name="wordPressPath" value="../../.."/>
<!-- Where to save log entries added with self::log() -->
<env name="logsPath" value="tests/logs"/>
<!-- Run the test on this site; used only for multisite installations. -->
<env name="siteUrl" value="multisite.com/a-site-of-the-network"/>
</php>
</phpunit>