mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
26 lines
860 B
XML
26 lines
860 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnFailure="false">
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Apis">
|
|
<directory>./test/Api</directory>
|
|
</testsuite>
|
|
<testsuite name="Models">
|
|
<directory>./test/Model</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./lib/Api</directory>
|
|
<directory suffix=".php">./lib/Model</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit> |