PluginProbe
WP Discourse / 2.6.0
WP Discourse v2.6.0
2.6.4 2.6.3 1.2.1 1.2.2 1.2.5 1.2.6 1.2.7 1.2.8 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.85 1.4.0 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 All 150 releases
wp-discourse / phpunit.xml

phpunit.xml in WP Discourse 2.6.0, at phpunit.xml

26 lines 820 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 bootstrap="tests/phpunit/bootstrap.php"
5 colors="true"
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 convertDeprecationsToExceptions="true"
10 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd">
11 <coverage processUncoveredFiles="true">
12 <include>
13 <directory suffix=".php">lib</directory>
14 </include>
15 </coverage>
16 <testsuites>
17 <testsuite name="unit">
18 <directory prefix="test-" suffix=".php">tests/phpunit/</directory>
19 <exclude>tests/phpunit/multisite/</exclude>
20 </testsuite>
21 </testsuites>
22 <php>
23 <server name="REQUEST_URI" value="https://wordpress.discourse.org"/>
24 </php>
25 </phpunit>
26