forked from loafle/openapi-generator-original
* Removed commented code * Input validation is now supported as strict JSON validation * [PHP][Symfony] Improve the implementation Closes #6614 * Generated code is tested to assure it compiles and updated README to dynamically load dependencies via composer * Updated shell script because shippable tests were failing
26 lines
750 B
XML
26 lines
750 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnFailure="false">
|
|
<testsuites>
|
|
<testsuite>
|
|
<directory>./Tests/Api</directory>
|
|
<directory>./Tests/Model</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<php>
|
|
<server name="KERNEL_DIR" value="Tests/" />
|
|
</php>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">././Api</directory>
|
|
<directory suffix=".php">././Model</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|