mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
* feat: simple/experimental generator for flight-php server framework * fix: update php-flight samples and add php-flight to integration tests * feat: adding path to method doc
29 lines
994 B
XML
29 lines
994 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnFailure="false"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">./Api</directory>
|
|
<directory suffix=".php">./Model</directory>
|
|
<directory suffix=".php">.</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">./Test</directory>
|
|
</exclude>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Default test suite">
|
|
<directory>./Test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<ini name="error_reporting" value="E_ALL" />
|
|
</php>
|
|
</phpunit>
|