PluginProbe
Extendify / 3.1.4
Extendify v3.1.4
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / phpunit.xml.dist

phpunit.xml.dist in Extendify 3.1.4, at phpunit.xml.dist

24 lines 636 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 xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5 bootstrap="tests/bootstrap.php"
6 colors="true"
7 cacheResultFile=".phpunit.cache/test-results"
8 >
9 <php>
10 <env name="WP_TESTS_DIR" value="vendor/wp-phpunit/wp-phpunit" />
11 <env name="WP_PHPUNIT__TESTS_CONFIG" value="tests/wp-tests-config.php" />
12 </php>
13 <testsuites>
14 <testsuite name="default">
15 <directory>tests</directory>
16 </testsuite>
17 </testsuites>
18 <coverage>
19 <include>
20 <directory suffix=".php">app</directory>
21 </include>
22 </coverage>
23 </phpunit>
24