forked from cesarams/prestashop-ee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
53 lines (53 loc) · 3.25 KB
/
phpunit.xml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
colors="true"
bootstrap="./Test/bootstrap.php"
processIsolation="true"
>
<testsuites>
<testsuite name="unit-tests">
<directory suffix="Test.php">Test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./wirecardpaymentgateway/*</directory>
<file>wirecardpaymentgateway/wirecardpaymentgateway.php</file>
<exclude>
<directory>wirecardpaymentgateway/vendor</directory>
<directory>wirecardpaymentgateway/translations</directory>
<directory>wirecardpaymentgateway/tests</directory>
<file>wirecardpaymentgateway/index.php</file>
<file>wirecardpaymentgateway/controllers/index.php</file>
<file>wirecardpaymentgateway/controllers/front/index.php</file>
<file>wirecardpaymentgateway/controllers/admin/index.php</file>
<file>wirecardpaymentgateway/helper/index.php</file>
<file>wirecardpaymentgateway/models/index.php</file>
<file>wirecardpaymentgateway/views/index.php</file>
<file>wirecardpaymentgateway/views/img/index.php</file>
<file>wirecardpaymentgateway/views/img/paymenttypes/index.php</file>
<file>wirecardpaymentgateway/views/js/index.php</file>
<file>wirecardpaymentgateway/views/templates/index.php</file>
<file>wirecardpaymentgateway/views/templates/hook/index.php</file>
<file>wirecardpaymentgateway/views/templates/front/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/_configure/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/_configure/helpers/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/_configure/helpers/form/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/backend/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/backend/helpers/index.php</file>
<file>wirecardpaymentgateway/views/templates/admin/backend/helpers/view/index.php</file>
<file>wirecardpaymentgateway/views/img/index.php</file>
<file>wirecardpaymentgateway/views/img/paymenttypes/index.php</file>
<file>wirecardpaymentgateway/views/js/index.php</file>
<file>wirecardpaymentgateway/models/index.php</file>
<file>wirecardpaymentgateway/mails/index.php</file>
<file>wirecardpaymentgateway/mails/en/index.php</file>
<file>wirecardpaymentgateway/translations/index.php</file>
<file>wirecardpaymentgateway/codeception.yml</file>
<file>wirecardpaymentgateway/upgrade/index.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>