BeSimpleSoap/phpunit.xml.dist

35 lines
946 B
Plaintext
Raw Permalink 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"
2018-04-06 10:58:45 +02:00
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>
2018-04-06 10:58:45 +02:00
<testsuite name="BeSimpleSoap Test Suite">
<directory>./src/BeSimple/*/Tests/</directory>
2013-07-19 11:28:23 +02:00
</testsuite>
</testsuites>
2017-06-13 13:06:58 +02:00
<filter>
<whitelist>
2018-04-06 10:58:45 +02:00
<directory>./src/BeSimple/</directory>
2017-06-13 13:06:58 +02:00
<exclude>
2018-04-06 10:58:45 +02:00
<directory>./src/BeSimple/*/Tests</directory>
<directory>./src/BeSimple/*/Resources</directory>
2017-06-13 13:06:58 +02:00
</exclude>
</whitelist>
</filter>
2013-07-19 11:28:23 +02:00
</phpunit>