|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<phpunit |
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" |
5 |
| - backupGlobals="false" |
6 |
| - backupStaticAttributes="false" |
7 |
| - bootstrap="vendor/autoload.php" |
8 |
| - colors="true" |
9 |
| - convertErrorsToExceptions="true" |
10 |
| - convertNoticesToExceptions="true" |
11 |
| - convertWarningsToExceptions="true" |
12 |
| - processIsolation="false" |
13 |
| - stopOnFailure="false" |
14 |
| - executionOrder="random" |
15 |
| - failOnWarning="true" |
16 |
| - failOnRisky="true" |
17 |
| - failOnEmptyTestSuite="true" |
18 |
| - beStrictAboutOutputDuringTests="true" |
19 |
| - verbose="true" |
20 |
| -> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> |
21 | 3 | <testsuites>
|
22 | 4 | <testsuite name="CodebarAg Test Suite">
|
23 | 5 | <directory>tests</directory>
|
24 | 6 | </testsuite>
|
25 | 7 | </testsuites>
|
26 | 8 | <coverage>
|
27 |
| - <include> |
28 |
| - <directory suffix=".php">./src</directory> |
29 |
| - </include> |
30 | 9 | <report>
|
31 | 10 | <html outputDirectory="build/coverage"/>
|
32 | 11 | <text outputFile="build/coverage.txt"/>
|
|
37 | 16 | <junit outputFile="build/report.junit.xml"/>
|
38 | 17 | </logging>
|
39 | 18 | <php>
|
40 |
| - <env name="ZENDESK_ENDPOINT" value="endpoint"/> |
41 |
| - <env name="ZENDESK_EMAIL_ADDRESS" value="email_Address"/> |
42 |
| - <env name="ZENDESK_API_TOKEN" value="token"/> |
| 19 | + <env name="ZENDESK_SUBDOMAIN" value=""/> |
| 20 | + <env name="ZENDESK_EMAIL_ADDRESS" value=""/> |
| 21 | + <env name="ZENDESK_API_TOKEN" value=""/> |
43 | 22 | </php>
|
| 23 | + <source> |
| 24 | + <include> |
| 25 | + <directory suffix=".php">./src</directory> |
| 26 | + </include> |
| 27 | + </source> |
44 | 28 | </phpunit>
|
0 commit comments