forked from loafle/openapi-generator-original
* feature(phpunit) fix PHPUnit invocation, add basic phpunit.xml.dist * fix(phpunit) add proper paths relative to phpunit.xml.dist
22 lines
698 B
Plaintext
22 lines
698 B
Plaintext
<?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>{{apiTestPath}}</directory>
|
|
<directory>{{modelTestPath}}</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">{{apiSrcPath}}</directory>
|
|
<directory suffix=".php">{{modelSrcPath}}</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|