BeSimpleSoap/phpunit.xml.dist

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-07-19 11:28:23 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
stderr="true"
bootstrap="vendor/autoload.php">
2013-07-24 23:18:41 +02:00
<php>
<const name="WEBSERVER_PORT" value="8000" />
</php>
2013-07-19 11:28:23 +02:00
<testsuites>
<testsuite name="BeSimpleSoapTestSuite">
<directory>tests</directory>
2013-07-19 11:28:23 +02:00
</testsuite>
</testsuites>
2017-06-13 13:06:58 +02:00
<filter>
<whitelist>
<directory>src</directory>
<exclude>
<directory>src/BeSimple/SoapBundle</directory>
<directory>src/BeSimple/SoapCommon/Type</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
<log type="coverage-clover" target="cache/clover.xml"/>
</logging>
2013-07-19 11:28:23 +02:00
</phpunit>