|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| - |
3 |
| -<phpunit 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="vendor/autoload.php" |
12 |
| -> |
13 |
| - <testsuites> |
14 |
| - <testsuite name="Graphql controllers bundle Test Suite"> |
15 |
| - <directory>./Tests/</directory> |
16 |
| - </testsuite> |
17 |
| - </testsuites> |
18 |
| - |
19 |
| - <filter> |
20 |
| - <whitelist> |
21 |
| - <directory>./</directory> |
22 |
| - <exclude> |
23 |
| - <directory>./Resources</directory> |
24 |
| - <directory>./Tests</directory> |
25 |
| - <directory>./vendor</directory> |
26 |
| - <directory>./var</directory> |
27 |
| - </exclude> |
28 |
| - </whitelist> |
29 |
| - </filter> |
30 |
| - |
31 |
| - <php> |
32 |
| - <env name="DATABASE_URL" value="mysql://root:@127.0.0.1:3306/test_tdbmbundle" /> |
33 |
| - <env name="DATABASE_URL2" value="mysql://root:@127.0.0.1:3306/test_tdbmbundle2" /> |
34 |
| - <env name="DATABASE_URL_ROOT" value="mysql://root:@127.0.0.1:3306/" /> |
35 |
| - </php> |
36 |
| - |
37 |
| - <logging> |
38 |
| - <log type="coverage-html" target="build/coverage"/> |
39 |
| - <log type="coverage-clover" target="build/logs/clover.xml"/> |
40 |
| - </logging> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 3 | + <coverage> |
| 4 | + <include> |
| 5 | + <directory>./</directory> |
| 6 | + </include> |
| 7 | + <exclude> |
| 8 | + <directory>./Resources</directory> |
| 9 | + <directory>./Tests</directory> |
| 10 | + <directory>./vendor</directory> |
| 11 | + <directory>./var</directory> |
| 12 | + </exclude> |
| 13 | + <report> |
| 14 | + <clover outputFile="build/logs/clover.xml"/> |
| 15 | + <html outputDirectory="build/coverage"/> |
| 16 | + </report> |
| 17 | + </coverage> |
| 18 | + <testsuites> |
| 19 | + <testsuite name="Graphql controllers bundle Test Suite"> |
| 20 | + <directory>./Tests/</directory> |
| 21 | + </testsuite> |
| 22 | + </testsuites> |
| 23 | + <php> |
| 24 | + <env name="DATABASE_URL" value="mysql://root:@127.0.0.1:3306/test_tdbmbundle"/> |
| 25 | + <env name="DATABASE_URL2" value="mysql://root:@127.0.0.1:3306/test_tdbmbundle2"/> |
| 26 | + <env name="DATABASE_URL_ROOT" value="mysql://root:@127.0.0.1:3306/"/> |
| 27 | + </php> |
| 28 | + <logging/> |
41 | 29 | </phpunit>
|
0 commit comments