PluginProbe
DesignSetGo / trunk
DesignSetGo vtrunk
2.7.3 2.7.1 2.7.2 2.7.0 2.6.3 2.6.2 2.6.1 2.6.0 2.5.1 2.4.1-test 2.5.0 2.4.0 2.3.0 2.2.0 2.1.2 2.1.1 2.1.0 trunk 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 All 67 releases
designsetgo / phpunit.xml.dist

phpunit.xml.dist in DesignSetGo trunk, at phpunit.xml.dist

37 lines 1.1 KB
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="https://schema.phpunit.de/9.5/phpunit.xsd"
5 bootstrap="tests/phpunit/bootstrap.php"
6 backupGlobals="false"
7 colors="true"
8 beStrictAboutTestsThatDoNotTestAnything="true"
9 beStrictAboutOutputDuringTests="true"
10 verbose="true">
11 <testsuites>
12 <testsuite name="DesignSetGo">
13 <directory suffix="-test.php">./tests/phpunit</directory>
14 </testsuite>
15 <testsuite name="DesignSetGo Integration">
16 <directory suffix="Test.php">./tests/integration</directory>
17 </testsuite>
18 </testsuites>
19 <coverage>
20 <include>
21 <directory suffix=".php">./includes</directory>
22 </include>
23 <exclude>
24 <directory>./vendor</directory>
25 <directory>./tests</directory>
26 </exclude>
27 </coverage>
28 <php>
29 <env name="WP_TESTS_DOMAIN" value="example.org"/>
30 <env name="WP_TESTS_EMAIL" value="admin@example.org"/>
31 <env name="WP_TESTS_TITLE" value="Test Blog"/>
32 <env name="WP_PHP_BINARY" value="php"/>
33 <env name="WP_TESTS_FORCE_KNOWN_BUGS" value="false"/>
34 <env name="WP_DEBUG" value="true"/>
35 </php>
36 </phpunit>
37