-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
29 lines (28 loc) · 1.03 KB
/
phpunit.xml.dist
File metadata and controls
29 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/PHPUnit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="PayPal Point of Sale WooCommerce PHP unit tests">
<directory suffix="Test.php">./tests/PHPUnit/Unit</directory>
</testsuite>
<testsuite name="PayPal Point of Sale WooCommerce PHP integration tests">
<file>./tests/PHPUnit/Integration/Auth/CredentialsTest.php</file>
<file>./tests/PHPUnit/Integration/ImageUpload/ImageCrudTest.php</file>
<directory suffix="Test.php">./tests/PHPUnit/Integration</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="true" />
</php>
</phpunit>