-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
39 lines (39 loc) · 1.31 KB
/
phpunit.xml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="Tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="true"
timeoutForSmallTests="60"
timeoutForMediumTests="60"
timeoutForLargeTests="120"
beStrictAboutTestSize="false"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<testsuites>
<testsuite name="unit">
<directory>Tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">Scraper</directory>
<file>Scraper/**</file>
</whitelist>
</filter>
<php>
<const name="WEB_SERVER_HOST" value="localhost" />
<const name="WEB_SERVER_PORT" value="1349" />
<const name="WEB_SERVER_DOCROOT" value="./Tests/Data/Server" />
</php>
</phpunit>