forked from shopware5/SwagImportExport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
39 lines (34 loc) · 1.09 KB
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit bootstrap="./Tests/bootstrap.php"
colors="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.3/phpunit.xsd"
>
<testsuites>
<testsuite name="Shopware ImportExport Plugin">
<directory>./Tests/Functional</directory>
<directory>./Tests/Shopware</directory>
<directory>./Tests/Unit</directory>
</testsuite>
<testsuite name="unit">
<directory>./Tests/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory>./Tests/Functional</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">./Tests</directory>
<directory suffix=".php">./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>