|
| 1 | +<?xml version="1.0"?> |
1 | 2 | <!-- |
2 | | - * Copyright (C) 2011-2017 by Lars Strojny <lstrojny@php.net> |
| 3 | + * Copyright (C) 2011-2021 by Lars Strojny <lstrojny@php.net> |
3 | 4 | * |
4 | 5 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
5 | 6 | * of this software and associated documentation files (the "Software"), to deal |
|
19 | 20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
20 | 21 | * THE SOFTWARE. |
21 | 22 | --> |
22 | | -<phpunit |
23 | | - backupGlobals="false" |
24 | | - backupStaticAttributes="false" |
25 | | - bootstrap="vendor/autoload.php" |
26 | | - convertWarningsToExceptions="true" |
27 | | - convertNoticesToExceptions="true" |
28 | | - beStrictAboutTestsThatDoNotTestAnything="true" |
29 | | - beStrictAboutOutputDuringTests="true" |
30 | | - verbose="true" |
31 | | - colors="true"> |
32 | | - <filter> |
33 | | - <whitelist> |
34 | | - <directory suffix=".php">src/Functional</directory> |
35 | | - </whitelist> |
36 | | - </filter> |
37 | | - |
38 | | - <testsuites> |
39 | | - <testsuite name="unit-tests"> |
40 | | - <directory>tests/Functional/</directory> |
41 | | - </testsuite> |
42 | | - </testsuites> |
43 | | - |
44 | | - <logging> |
45 | | - <log type="coverage-html" target="build/coverage" |
46 | | - lowUpperBound="35" highLowerBound="70"/> |
47 | | - <log type="coverage-clover" target="build/logs/clover.xml"/> |
48 | | - <log type="junit" target="build/logs/junit.xml"/> |
49 | | - </logging> |
50 | | - |
51 | | - <php> |
52 | | - <ini name="error_reporting" value="-1"/> |
53 | | - <ini name="date.timezone" value="UTC"/> |
54 | | - <ini name="display_errors" value="on"/> |
55 | | - </php> |
56 | | - |
| 23 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 25 | + bootstrap="vendor/autoload.php" |
| 26 | + beStrictAboutOutputDuringTests="true" |
| 27 | + verbose="true" |
| 28 | + colors="true"> |
| 29 | + <coverage> |
| 30 | + <include> |
| 31 | + <directory suffix=".php">src/Functional</directory> |
| 32 | + </include> |
| 33 | + <report> |
| 34 | + <clover outputFile="build/logs/clover.xml"/> |
| 35 | + <html outputDirectory="build/coverage" lowUpperBound="35" highLowerBound="70"/> |
| 36 | + </report> |
| 37 | + </coverage> |
| 38 | + <testsuites> |
| 39 | + <testsuite name="unit-tests"> |
| 40 | + <directory>tests/Functional/</directory> |
| 41 | + </testsuite> |
| 42 | + </testsuites> |
| 43 | + <logging> |
| 44 | + <junit outputFile="build/logs/junit.xml"/> |
| 45 | + </logging> |
| 46 | + <php> |
| 47 | + <ini name="error_reporting" value="-1"/> |
| 48 | + <ini name="date.timezone" value="UTC"/> |
| 49 | + <ini name="display_errors" value="on"/> |
| 50 | + </php> |
57 | 51 | </phpunit> |
0 commit comments