|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd" |
| 4 | + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
5 | 5 | bootstrap="test/bootstrap-dist.php" |
6 | 6 | colors="true" |
7 | 7 | forceCoversAnnotation="true" |
8 | 8 | verbose="true" |
9 | 9 | executionOrder="random" |
10 | 10 | defaultTestSuite="unit" |
11 | 11 | > |
12 | | - <php> |
13 | | - <const name="PHPMYADMIN" value="1"/> |
14 | | - <const name="TESTSUITE" value="1"/> |
15 | | - <env name="LC_ALL" value="C.UTF8" force="true"/> |
16 | | - </php> |
17 | | - |
18 | | - <testsuites> |
19 | | - <testsuite name="unit"> |
20 | | - <directory suffix="Test.php">test/classes</directory> |
21 | | - </testsuite> |
22 | | - <testsuite name="selenium"> |
23 | | - <directory suffix="Test.php">test/selenium</directory> |
24 | | - </testsuite> |
25 | | - </testsuites> |
26 | | - |
27 | | - <logging> |
28 | | - <log type="coverage-clover" target="build/logs/clover.xml" /> |
29 | | - <log type="coverage-xml" target="build/logs/coverage-xml"/> |
30 | | - <log type="junit" target="build/logs/junit.xml" /> |
31 | | - </logging> |
32 | | - |
33 | | - <filter> |
34 | | - <whitelist> |
35 | | - <directory suffix=".php">.</directory> |
36 | | - <exclude> |
37 | | - <directory>examples</directory> |
38 | | - <directory>libraries/cache</directory> |
39 | | - <directory>node_modules</directory> |
40 | | - <directory>test</directory> |
41 | | - <directory>tmp</directory> |
42 | | - <directory>vendor</directory> |
43 | | - </exclude> |
44 | | - </whitelist> |
45 | | - </filter> |
| 12 | + <coverage> |
| 13 | + <include> |
| 14 | + <directory suffix=".php">.</directory> |
| 15 | + </include> |
| 16 | + <exclude> |
| 17 | + <directory>examples</directory> |
| 18 | + <directory>libraries/cache</directory> |
| 19 | + <directory>node_modules</directory> |
| 20 | + <directory>test</directory> |
| 21 | + <directory>tmp</directory> |
| 22 | + <directory>vendor</directory> |
| 23 | + </exclude> |
| 24 | + <report> |
| 25 | + <clover outputFile="build/logs/clover.xml"/> |
| 26 | + <xml outputDirectory="build/logs/coverage-xml"/> |
| 27 | + </report> |
| 28 | + </coverage> |
| 29 | + <php> |
| 30 | + <const name="PHPMYADMIN" value="1"/> |
| 31 | + <const name="TESTSUITE" value="1"/> |
| 32 | + <env name="LC_ALL" value="C.UTF8" force="true"/> |
| 33 | + </php> |
| 34 | + <testsuites> |
| 35 | + <testsuite name="unit"> |
| 36 | + <directory suffix="Test.php">test/classes</directory> |
| 37 | + </testsuite> |
| 38 | + <testsuite name="selenium"> |
| 39 | + <directory suffix="Test.php">test/selenium</directory> |
| 40 | + </testsuite> |
| 41 | + </testsuites> |
| 42 | + <logging> |
| 43 | + <junit outputFile="build/logs/junit.xml"/> |
| 44 | + </logging> |
46 | 45 | </phpunit> |
0 commit comments