|
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/9.3/phpunit.xsd" |
5 |
| - backupGlobals="false" |
6 |
| - backupStaticAttributes="false" |
7 | 4 | bootstrap="vendor/autoload.php"
|
8 | 5 | cacheResultFile="build/phpunit/.phpunit.result.cache"
|
9 | 6 | colors="true"
|
10 |
| - convertErrorsToExceptions="true" |
11 |
| - convertNoticesToExceptions="true" |
12 |
| - convertWarningsToExceptions="true" |
13 |
| - processIsolation="false" |
14 |
| - stopOnFailure="false" |
15 | 7 | verbose="true"
|
| 8 | + xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" |
16 | 9 | >
|
| 10 | + <!--printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"--> |
| 11 | + <!--printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printers\DefaultPrinter"--> |
| 12 | + <!--printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printers\ReportablePrinter"--> |
| 13 | + <testsuites> |
| 14 | + <testsuite name="Guanguans Test Suite"> |
| 15 | + <directory>tests/</directory> |
| 16 | + <exclude>vendor/</exclude> |
| 17 | + </testsuite> |
| 18 | + </testsuites> |
17 | 19 | <coverage>
|
18 | 20 | <include>
|
19 | 21 | <directory suffix=".php">src/</directory>
|
|
24 | 26 | <file>src/SoarServiceProvider.php</file>
|
25 | 27 | </exclude>
|
26 | 28 | </coverage>
|
27 |
| - <testsuites> |
28 |
| - <testsuite name="Guanguans Test Suite"> |
29 |
| - <directory>tests/</directory> |
30 |
| - <exclude>vendor/</exclude> |
31 |
| - </testsuite> |
32 |
| - </testsuites> |
| 29 | + <source> |
| 30 | + <include> |
| 31 | + <directory suffix=".php">src/</directory> |
| 32 | + </include> |
| 33 | + <exclude> |
| 34 | + <!--<directory>src/Contracts/</directory>--> |
| 35 | + <file>src/Support/QueryAnalyzer.php</file> |
| 36 | + <file>src/SoarServiceProvider.php</file> |
| 37 | + </exclude> |
| 38 | + </source> |
| 39 | + <extensions> |
| 40 | + <!--<extension class="NunoMaduro\Collision\Adapters\Phpunit\Printer"/>--> |
| 41 | + <!--<extension class="Ergebnis\PHPUnit\SlowTestDetector\Extension"/>--> |
| 42 | + <!--<bootstrap class="Ergebnis\PHPUnit\SlowTestDetector\Extension"/>--> |
| 43 | + </extensions> |
33 | 44 | </phpunit>
|
0 commit comments