|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
| - xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
4 |
| - bootstrap="system/Test/bootstrap.php" |
5 |
| - backupGlobals="false" |
6 |
| - beStrictAboutOutputDuringTests="true" |
7 |
| - beStrictAboutTodoAnnotatedTests="true" |
8 |
| - cacheResultFile="build/.phpunit.cache/test-results" |
9 |
| - colors="true" |
10 |
| - columns="max" |
11 |
| - failOnRisky="true" |
12 |
| - failOnWarning="true" |
13 |
| - verbose="true"> |
14 |
| - |
15 |
| - <coverage cacheDirectory="build/.phpunit.cache/code-coverage" |
16 |
| - processUncoveredFiles="true" |
17 |
| - ignoreDeprecatedCodeUnits="true"> |
18 |
| - <include> |
19 |
| - <directory suffix=".php">system</directory> |
20 |
| - </include> |
21 |
| - |
22 |
| - <exclude> |
23 |
| - <directory>system/Commands/Generators/Views</directory> |
24 |
| - <directory>system/Debug/Toolbar/Views</directory> |
25 |
| - <directory>system/Pager/Views</directory> |
26 |
| - <directory>system/ThirdParty</directory> |
27 |
| - <directory>system/Validation/Views</directory> |
28 |
| - <file>system/bootstrap.php</file> |
29 |
| - <file>system/ComposerScripts.php</file> |
30 |
| - <file>system/Config/Routes.php</file> |
31 |
| - <file>system/Test/bootstrap.php</file> |
32 |
| - <file>system/Test/ControllerTester.php</file> |
33 |
| - <file>system/Test/FeatureTestCase.php</file> |
34 |
| - </exclude> |
35 |
| - |
| 3 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" |
| 4 | + bootstrap="system/Test/bootstrap.php" backupGlobals="false" |
| 5 | + beStrictAboutOutputDuringTests="true" colors="true" columns="max" |
| 6 | + failOnRisky="true" failOnWarning="true" |
| 7 | + cacheDirectory=".phpunit.cache"> |
| 8 | + <coverage ignoreDeprecatedCodeUnits="true"> |
36 | 9 | <report>
|
37 | 10 | <clover outputFile="build/logs/clover.xml"/>
|
38 | 11 | </report>
|
39 | 12 | </coverage>
|
40 |
| - |
41 | 13 | <testsuites>
|
42 | 14 | <testsuite name="System">
|
43 | 15 | <directory>tests/system</directory>
|
44 | 16 | </testsuite>
|
45 | 17 | </testsuites>
|
46 |
| - |
47 | 18 | <extensions>
|
48 | 19 | <extension class="Nexus\PHPUnit\Extension\Tachycardia">
|
49 | 20 | <arguments>
|
|
64 | 35 | </arguments>
|
65 | 36 | </extension>
|
66 | 37 | </extensions>
|
67 |
| - |
68 | 38 | <php>
|
69 | 39 | <server name="app.baseURL" value="http://example.com/"/>
|
70 | 40 | <server name="CODEIGNITER_SCREAM_DEPRECATIONS" value="1"/>
|
|
75 | 45 | <!-- Directory containing the front controller (index.php) -->
|
76 | 46 | <const name="PUBLICPATH" value="./public/"/>
|
77 | 47 | </php>
|
| 48 | + <source> |
| 49 | + <include> |
| 50 | + <directory suffix=".php">system</directory> |
| 51 | + </include> |
| 52 | + <exclude> |
| 53 | + <directory>system/Commands/Generators/Views</directory> |
| 54 | + <directory>system/Debug/Toolbar/Views</directory> |
| 55 | + <directory>system/Pager/Views</directory> |
| 56 | + <directory>system/ThirdParty</directory> |
| 57 | + <directory>system/Validation/Views</directory> |
| 58 | + <file>system/bootstrap.php</file> |
| 59 | + <file>system/ComposerScripts.php</file> |
| 60 | + <file>system/Config/Routes.php</file> |
| 61 | + <file>system/Test/bootstrap.php</file> |
| 62 | + <file>system/Test/ControllerTester.php</file> |
| 63 | + <file>system/Test/FeatureTestCase.php</file> |
| 64 | + </exclude> |
| 65 | + </source> |
78 | 66 | </phpunit>
|
0 commit comments