1
0
mirror of synced 2024-11-21 21:06:07 +03:00
api-client-php/phpunit.xml.dist

43 lines
1.3 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2019-08-30 14:10:52 +03:00
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2021-06-02 17:00:32 +03:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
2019-08-30 14:10:52 +03:00
backupGlobals="false"
colors="false"
bootstrap="tests/bootstrap.php"
backupStaticAttributes="false"
2021-06-02 17:00:32 +03:00
convertErrorsToExceptions="true"
2019-08-30 14:10:52 +03:00
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
processIsolation="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
>
2021-06-02 17:00:32 +03:00
<coverage>
<include>
<directory>src</directory>
<directory>dev</directory>
</include>
<report>
<clover outputFile="coverage.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Project Test Suite">
<file>tests/src/Command/ClearModelsCommandTest.php</file>
<file>tests/src/Command/GenerateModelsCommandTest.php</file>
<file>tests/src/Command/VerifyModelsCommandTest.php</file>
<directory>tests/src</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="test-report.xml"/>
</logging>
<php>
<ini name="memory_limit" value="4G" />
</php>
</phpunit>