BeSimpleSoap/src/BeSimple/SoapClient/phpunit.xml.dist

35 lines
894 B
Plaintext
Raw Normal View History

2011-09-03 21:15:51 +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"
2013-07-19 11:28:23 +02:00
bootstrap="vendor/autoload.php"
2011-09-03 21:15:51 +02:00
>
2013-07-24 23:18:41 +02:00
<php>
<const name="WEBSERVER_PORT" value="8000" />
</php>
2011-09-03 21:15:51 +02:00
<testsuites>
2013-07-19 11:28:23 +02:00
<testsuite name="BeSimple SoapClient Test Suite">
<directory>./Tests/</directory>
2011-09-03 21:15:51 +02:00
</testsuite>
</testsuites>
<filter>
<whitelist>
2013-07-19 11:28:23 +02:00
<directory>./</directory>
<exclude>
<directory>./Tests/</directory>
<directory>./vendor/</directory>
</exclude>
2011-09-03 21:15:51 +02:00
</whitelist>
</filter>
</phpunit>