forked from magento/magento2-functional-testing-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
34 lines (33 loc) · 1.29 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
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.1/phpunit.xsd"
convertNoticesToExceptions="false"
bootstrap="_bootstrap.php"
backupGlobals="false">
<testsuites>
<testsuite name="verification">
<directory>verification</directory>
</testsuite>
<testsuite name="unit">
<directory>unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">../../src/Magento/FunctionalTestingFramework/DataGenerator</directory>
<directory suffix=".php">../../src/Magento/FunctionalTestingFramework/Page</directory>
<directory suffix=".php">../../src/Magento/FunctionalTestingFramework/Suite</directory>
<directory suffix=".php">../../src/Magento/FunctionalTestingFramework/Test</directory>
<directory suffix=".php">../../src/Magento/FunctionalTestingFramework/Util</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>