forked from snicco/snicco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
64 lines (57 loc) · 2.57 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
64 lines (57 loc) · 2.57 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutChangesToGlobalState="true"
failOnRisky="true"
failOnWarning="true"
verbose="true"
colors="true"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">src/Snicco/*/*/tests/</directory>
<directory suffix="Test.php">tests/Monorepo</directory>
<exclude>src/Snicco/*/*/tests/integration</exclude>
<exclude>src/Snicco/*/*/tests/wordpress</exclude>
</testsuite>
<testsuite name="component">
<directory suffix="Test.php">src/Snicco/Component/*/tests/</directory>
<exclude>src/Snicco/Component/*/tests/integration</exclude>
<exclude>src/Snicco/Component/*/tests/wordpress</exclude>
</testsuite>
<testsuite name="middleware">
<directory suffix="Test.php">src/Snicco/Middleware/*/tests/</directory>
<exclude>src/Snicco/Middleware/*/tests/integration</exclude>
<exclude>src/Snicco/Middleware/*/tests/wordpress</exclude>
</testsuite>
<testsuite name="bridge">
<directory suffix="Test.php">src/Snicco/Bridge/*/tests/</directory>
<exclude>src/Snicco/Bridge/*/tests/integration</exclude>
<exclude>src/Snicco/Bridge/*/tests/wordpress</exclude>
</testsuite>
<testsuite name="bundle">
<directory suffix="Test.php">src/Snicco/Bundle/*/tests/</directory>
<exclude>src/Snicco/Bundle/*/tests/integration</exclude>
<exclude>src/Snicco/Bundle/*/tests/wordpress</exclude>
</testsuite>
<testsuite name="monorepo">
<directory suffix="Test.php">tests/Monorepo</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory>./src/Snicco/*</directory>
</include>
<exclude>
<directory>./src/Snicco/*/*/tests</directory>
<directory>./src/Snicco/*/*/tests</directory>
<directory>./src/Snicco/*/*/tests</directory>
</exclude>
</coverage>
</phpunit>