selenium-tor/phpunit.xml

30 lines
980 B
XML

<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="3600"
timeoutForMediumTests="3600"
timeoutForLargeTests="3600"
verbose="true">
<testsuites>
<testsuite name="Selenium Tests">
<directory suffix=".php">Tests/</directory>
<exclude>src/</exclude>
<file>*.php</file>
</testsuite>
</testsuites>
</phpunit>