PluginProbe
SureDonation – Donation Forms, Fundraising Campaigns & Donor Management / trunk
SureDonation – Donation Forms, Fundraising Campaigns & Donor Management vtrunk
1.5.1 1.5.0 1.4.0 1.3.0 trunk 0.0.1 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0
suredonation / phpunit-unit.xml.dist

phpunit-unit.xml.dist in SureDonation – Donation Forms, Fundraising Campaigns & Donor Management trunk, at phpunit-unit.xml.dist

24 lines 846 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 <!--
3 Standalone (no-WordPress) unit suite. tests/unit/bootstrap.php shims the WP
4 functions and fakes the DB/collaborator classes the classes under test call,
5 so these run fast without a WordPress install. Kept separate from the
6 WordPress test-suite config (phpunit.xml.dist) because the two need opposite
7 environments (this one must NOT load WordPress).
8
9 Run with: composer test:unit
10 -->
11 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
13 bootstrap="tests/unit/bootstrap.php"
14 colors="true"
15 beStrictAboutOutputDuringTests="true"
16 failOnWarning="true"
17 >
18 <testsuites>
19 <testsuite name="unit">
20 <directory prefix="test-" suffix=".php">tests/unit/inc/privacy</directory>
21 </testsuite>
22 </testsuites>
23 </phpunit>
24