|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<phpunit bootstrap="vendor/autoload.php" |
3 | | - backupGlobals="false" |
4 | | - backupStaticAttributes="false" |
5 | | - colors="true" |
6 | | - verbose="true" |
7 | | - convertErrorsToExceptions="true" |
8 | | - convertNoticesToExceptions="true" |
9 | | - convertWarningsToExceptions="true" |
10 | | - processIsolation="false" |
11 | | - stopOnFailure="true"> |
12 | | - <testsuites> |
13 | | - <testsuite name="Unit"> |
14 | | - <directory>tests/Unit</directory> |
15 | | - </testsuite> |
16 | | - <testsuite name="Feature"> |
17 | | - <directory>tests/Feature</directory> |
18 | | - </testsuite> |
19 | | - </testsuites> |
20 | | - <filter> |
21 | | - <whitelist> |
22 | | - <directory suffix=".php">src/</directory> |
23 | | - </whitelist> |
24 | | - </filter> |
25 | | - <logging> |
26 | | - <log type="tap" target="build/report.tap"/> |
27 | | - <log type="junit" target="build/report.junit.xml"/> |
28 | | - <log type="coverage-html" target="build/coverage"/> |
29 | | - <log type="coverage-text" target="build/coverage.txt"/> |
30 | | - <log type="coverage-clover" target="build/logs/clover.xml"/> |
31 | | - </logging> |
32 | | - <php> |
33 | | - <env name="APP_KEY" value="3fifSECXIvnK5r28GVIWUAxmbBSjAjkO"/> |
34 | | - <env name="TS_SPREADSHEET_ID" value="1NZoyjVIGw4G1g7xgHs2TheIpXbNGs3udSgKBp0kL--Y"/> |
35 | | - <env name="TS_SERVICE_ACCOUNT_CREDENTIALS_FILE" value="tests/fixtures/service-account.json"/> |
36 | | - <env name="TS_SERVICE_ACCOUNT_EMAIL" value="translation-system@translation-sheet-tests.iam.gserviceaccount.com"/> |
37 | | - <env name="TS_LOCALES" value="en,fr"/> |
38 | | - </php> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
| 3 | + <testsuites> |
| 4 | + <testsuite name="Unit"> |
| 5 | + <directory>tests/Unit</directory> |
| 6 | + </testsuite> |
| 7 | + <testsuite name="Feature"> |
| 8 | + <directory>tests/Feature</directory> |
| 9 | + </testsuite> |
| 10 | + </testsuites> |
| 11 | + <logging> |
| 12 | + <junit outputFile="build/report.junit.xml"/> |
| 13 | + </logging> |
| 14 | + <php> |
| 15 | + <env name="APP_KEY" value="3fifSECXIvnK5r28GVIWUAxmbBSjAjkO"/> |
| 16 | + <env name="TS_SPREADSHEET_ID" value="1NZoyjVIGw4G1g7xgHs2TheIpXbNGs3udSgKBp0kL--Y"/> |
| 17 | + <env name="TS_SERVICE_ACCOUNT_CREDENTIALS_FILE" value="tests/fixtures/service-account.json"/> |
| 18 | + <env name="TS_SERVICE_ACCOUNT_EMAIL" value="translation-system@translation-sheet-tests.iam.gserviceaccount.com"/> |
| 19 | + <env name="TS_LOCALES" value="en,fr"/> |
| 20 | + </php> |
| 21 | + <source> |
| 22 | + <include> |
| 23 | + <directory suffix=".php">src/</directory> |
| 24 | + </include> |
| 25 | + </source> |
39 | 26 | </phpunit> |
0 commit comments