-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
26 lines (26 loc) · 1010 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
failOnRisky="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Programming languages test">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<server name="SNIPTBOT_PROVIDER_NAME" value="google"/>
<server name="SNIPTBOT_PROVIDER_CX" value=""/>
<server name="SNIPTBOT_PROVIDER_KEY" value=""/>
<server name="APP_ENV" value="testing"/>
<server name="CRAWLER_URI" value=""/>
</php>
</phpunit>