-
-
Notifications
You must be signed in to change notification settings - Fork 608
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
50 lines (50 loc) · 2.57 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
50 lines (50 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="_tests/Unit/bootstrap.php" processIsolation="true" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage>
<report>
<html outputDirectory="coverage"/>
<text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
</report>
</coverage>
<testsuites>
<testsuite name="pH7Builder Protected">
<directory>_tests/Unit</directory>
</testsuite>
<testsuite name="pH7Builder Protected CI">
<directory>_tests/Unit</directory>
<!--
Keep this suite deterministic for CI:
exclude tests that require external services (HTTP server, DB, API keys) or special runtime setup.
-->
<exclude>_tests/Unit/App/System/Module/Api/Controller/MainControllerTest.php</exclude>
<exclude>_tests/Unit/App/System/Module/Api/Controller/UserControllerTest.php</exclude>
<exclude>_tests/Unit/App/System/Core/Classes/ValidateSiteCoreTest.php</exclude>
<exclude>_tests/Unit/App/System/Module/Error/Controller/HttpControllerTest.php</exclude>
<exclude>_tests/Unit/App/System/Module/Field/Inc/Classes/FieldTest.php</exclude>
<exclude>_tests/Unit/Framework/Api/AllowCorsTest.php</exclude>
<exclude>_tests/Unit/Framework/Geo/Map/ApiTest.php</exclude>
<exclude>_tests/Unit/Framework/Video/Api/YoutubeTest.php</exclude>
<exclude>_tests/Unit/Framework/Video/ProviderFactoryTest.php</exclude>
</testsuite>
<testsuite name="pH7Builder Integration">
<file>_tests/Unit/App/System/Module/Api/Controller/MainControllerTest.php</file>
<file>_tests/Unit/App/System/Module/Api/Controller/UserControllerTest.php</file>
<file>_tests/Unit/App/System/Core/Classes/ValidateSiteCoreTest.php</file>
<file>_tests/Unit/App/System/Module/Error/Controller/HttpControllerTest.php</file>
<file>_tests/Unit/App/System/Module/Field/Inc/Classes/FieldTest.php</file>
<file>_tests/Unit/Framework/Api/AllowCorsTest.php</file>
<file>_tests/Unit/Framework/Geo/Map/ApiTest.php</file>
<file>_tests/Unit/Framework/Video/Api/YoutubeTest.php</file>
<file>_tests/Unit/Framework/Video/ProviderFactoryTest.php</file>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">_protected</directory>
</include>
<exclude>
<directory>_protected/library</directory>
<directory>_protected/vendor</directory>
</exclude>
</source>
</phpunit>