-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathphpunit.xml
More file actions
74 lines (72 loc) · 2.87 KB
/
phpunit.xml
File metadata and controls
74 lines (72 loc) · 2.87 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<!--
*
* NOTICE OF LICENSE
*
* This source file is subject to the MIT License
* It is available through the world-wide-web at this URL:
* https://tldrlegal.com/license/mit-license
* If you are unable to obtain it through the world-wide-web, please send an email
* to support@buckaroo.nl so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please contact support@buckaroo.nl for more information.
*
* @copyright Copyright (c) Buckaroo B.V.
* @license https://tldrlegal.com/license/mit-license
*
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="Test/Bootstrap.php"
cacheDirectory=".phpunit.cache"
colors="true"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
failOnRisky="false"
failOnWarning="false">
<testsuites>
<testsuite name="Buckaroo Magento2 Unit">
<directory suffix="Test.php">Test/Unit</directory>
<exclude>Test/BaseTest.php</exclude>
<exclude>Test/Unit/Gateway/Request/AbstractDataBuilderTest.php</exclude>
<exclude>Test/Unit/Gateway/Request/AbstractRequestBuilderTest.php</exclude>
<exclude>Test/Unit/Gateway/Response/AbstractResponseHandlerTest.php</exclude>
<exclude>Test/Unit/Model/AbstractCommandBasedTest.php</exclude>
<exclude>Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php</exclude>
<exclude>Test/Unit/Block/Adminhtml/Giftcard/EditTest.php</exclude>
<exclude>Test/Unit/Controller/Redirect/ProcessTest.php</exclude>
<exclude>Test/Unit/Controller/Payconiq/ProcessTest.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory>Api</directory>
<directory>Block</directory>
<directory>Controller</directory>
<directory>Cron</directory>
<directory>Gateway</directory>
<directory>Helper</directory>
<directory>Logging</directory>
<directory>Model</directory>
<directory>Observer</directory>
<directory>Plugin</directory>
<directory>Service</directory>
<directory>Setup</directory>
<directory>Ui</directory>
<directory>ViewModel</directory>
<directory>etc</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>view</directory>
<directory>Test</directory>
</exclude>
</source>
<php>
<ini name="error_reporting" value="-1"/>
</php>
</phpunit>