|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit |
3 | | - backupGlobals = "false" |
4 | | - backupStaticAttributes = "false" |
5 | | - colors = "true" |
6 | | - convertErrorsToExceptions = "true" |
7 | | - convertNoticesToExceptions = "true" |
8 | | - convertWarningsToExceptions = "true" |
9 | | - processIsolation = "false" |
10 | | - stopOnFailure = "false" |
11 | | - bootstrap = "tests/bootstrap.php" > |
12 | | - <php> |
13 | | - <ini name="max_execution_time" value="-1"/> |
14 | | - <ini name="html_errors" value="false"/> |
15 | | - <ini name="memory_limit" value="2G"/> |
16 | | - |
17 | | - <ini name="xdebug.default_enable" value="1" /> |
18 | | - <ini name="xdebug.enable_coverage" value="1" /> |
19 | | - <ini name="xdebug.remote_autostart" value="0" /> |
20 | | - <ini name="xdebug.remote_enable" value="0" /> |
21 | | - <ini name="xdebug.overload_var_dump" value="0" /> |
22 | | - <ini name="xdebug.show_mem_delta" value="0" /> |
23 | | - </php> |
24 | | - |
25 | | - <testsuites> |
26 | | - <testsuite name="Unit"> |
27 | | - <directory>./tests/Unit</directory> |
28 | | - </testsuite> |
29 | | - </testsuites> |
30 | | - <logging> |
31 | | - <log type="coverage-text" target="php://stdout" showOnlySummary="true"/> |
32 | | - <log type="coverage-html" target="build/logs/phpunit/coverage"/> |
33 | | - <log type="coverage-xml" target="build/logs/phpunit/coverage/coverage-xml"/> |
34 | | - <log type="coverage-clover" target="clover.xml"/> |
35 | | - <log type="junit" target="build/logs/phpunit/junit.xml"/> |
36 | | - </logging> |
37 | | - <filter> |
38 | | - <whitelist> |
39 | | - <directory>src</directory> |
40 | | - </whitelist> |
41 | | - </filter> |
42 | | - <listeners> |
43 | | - <listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" /> |
44 | | - </listeners> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + backupGlobals="false" |
| 4 | + backupStaticAttributes="false" |
| 5 | + colors="true" |
| 6 | + convertErrorsToExceptions="true" |
| 7 | + convertNoticesToExceptions="true" |
| 8 | + convertWarningsToExceptions="true" |
| 9 | + processIsolation="false" |
| 10 | + stopOnFailure="false" |
| 11 | + bootstrap="tests/bootstrap.php" |
| 12 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 13 | + <coverage> |
| 14 | + <include> |
| 15 | + <directory>src</directory> |
| 16 | + </include> |
| 17 | + <report> |
| 18 | + <clover outputFile="clover.xml"/> |
| 19 | + <html outputDirectory="build/logs/phpunit/coverage"/> |
| 20 | + <text outputFile="php://stdout" showOnlySummary="true"/> |
| 21 | + <xml outputDirectory="build/logs/phpunit/coverage/coverage-xml"/> |
| 22 | + </report> |
| 23 | + </coverage> |
| 24 | + <php> |
| 25 | + <ini name="max_execution_time" value="-1"/> |
| 26 | + <ini name="html_errors" value="false"/> |
| 27 | + <ini name="memory_limit" value="2G"/> |
| 28 | + <ini name="xdebug.default_enable" value="1"/> |
| 29 | + <ini name="xdebug.enable_coverage" value="1"/> |
| 30 | + <ini name="xdebug.remote_autostart" value="0"/> |
| 31 | + <ini name="xdebug.remote_enable" value="0"/> |
| 32 | + <ini name="xdebug.overload_var_dump" value="0"/> |
| 33 | + <ini name="xdebug.show_mem_delta" value="0"/> |
| 34 | + </php> |
| 35 | + <testsuites> |
| 36 | + <testsuite name="Unit"> |
| 37 | + <directory>./tests/Unit</directory> |
| 38 | + </testsuite> |
| 39 | + </testsuites> |
| 40 | + <logging> |
| 41 | + <junit outputFile="build/logs/phpunit/junit.xml"/> |
| 42 | + </logging> |
| 43 | + <listeners> |
| 44 | + <listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener"/> |
| 45 | + </listeners> |
45 | 46 | </phpunit> |
0 commit comments